I have a Winform application which uses colour to highlight certain things. I would like to allow the users to change \'their\' colours. As an exercise, I thought I would cr
Happened across this Question in trying to remember what I used to use and thought it might be useful to others.
You can use the [RefreshProperties] Attribute to trigger updates to the Property Grid.
eg:
[RefreshProperties(RefreshProperties.All)] public int MyProperty{ get; set; }