Forum Discussion
youran
Aug 23, 2023Copper Contributor
Regarding the issue of attaching a ControlDesigner to a control...
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(DemoDesig...
AddWebSolution
Dec 27, 2023Brass Contributor
Hi youran,
You can try below line:
demoButton.BackColor = Color.FromArgb(240, 240, 240);
Thanks & Best Regards,
AddWebSolution
You can try below line:
demoButton.BackColor = Color.FromArgb(240, 240, 240);
Thanks & Best Regards,
AddWebSolution