I have a Windows Forms application wherein controls on a form are databound. I have a picturebox which is intended to display an image from the database (SQL Server). There is an option to change the image (upload a new image instead).
I have databound the picturebox to the image in the bindingsource, and the form displays the stored Image into the picturebox. Upload mechanism works as well.
The problem is data-binding the Image to picturebox makes the HasChanges() in DataSet true, without a new upload.
How can I make HasChanges() return true only when the Image is changed by the user (provided all other fields remain unmodified)?