[2.0] Flat Button Appearance
I have a series of buttons that are created progromatically.
I need to change their flatstyle to FlatStyle.Flat, which I've done,
but now I need to alter their .FlatAppearance parameters.
Basically, bordersize =0.
These are normal buttons, but I get them from a separate DLL, as
they have some inherited interfaces tacked onto them.
All their normal props and methods are available, but .FlatAppearance is read-only.
Any suggestions?
Re: [2.0] Flat Button Appearance
FlatAppearance being ReadOnly is not an issue. All that means is that you cannot create a new FlatButtonAppearance object and assign it to the property. It doesn't stop you editing the properties of the existing object. Just set the FlatAppearance.BorderSize property to zero and you're away.
Re: [2.0] Flat Button Appearance
I swear I tried that. :rolleyes:
Thanks (again)