Aug 22 2023 06:48 PM
After attaching a ControlDesigner to a Button, the background of the Button becomes transparent in the designer, but the BackColor remains 240, 240, 240
[DesignerAttribute(typeof(DemoDesigner))]
public class DemoButton : Button
{
}
public class DemoDesigner : ControlDesigner
{
public override void Initialize(IComponent component)
{
base.Initialize(component);
}
}
Dec 26 2023 11:47 PM