Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
5.00/5 (2 votes)
I have a Windows Forms app with databinding (yes, I know, shoot me now) and it has a "Save" toolbar button. I want to gray out the "Save" button unless the user has made a change to the form control that will change a property on the DataContext.

The table has 100's of properties so I don't want to implement

C#
partial void OnXXXChanged(XXX value)
{

}


over and over again. My thought was to add a delegate to the DataContext partial class and maybe a polling thread to check the properties and ask if they've been changed.

DataContext appears to implement INotifyPropertyChanged etc but I can't seem to tie onto the PropertyChanged event from my Model.

How can I detect, essentially, the condition "hey! you need to call SubmitChanges() stoop!" and get a notification when that happens so I can un-gray the save button?
Posted

1 solution

*Nevermind*

One way, a total hack is to do

C#
partial class DbDataContext
{
    public bool IsDirty { get; set; }

    partial void OnCreated()
    {
        Application.Idle += (sender, e) =>
        {
            ChangeSet set = GetChangeSet();

            IsDirty = set.Inserts.Count > 0 || set.Updates.Count > 0 
                 || set.Deletes.Count > 0;
        };
    }
}


And of course also update the Save button on Application.Idle.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900