I have created a custom user control like this (simple example):
public class MyButton : Button
{
public MyButton()
{
BackColor = Color.Blue;
}
}
After compiling, it shows up in the form designer toolbox, and is displayed with the updated property. But, if I change the color, the controls that I am already using on the form keep their original color.
Is there a way to design a control that will propogate its changes to the designer?