Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
490
Assign the ButtonStyle of an UltraButton to an UltraCheckEditor.
posted

I have five UltraCheckEditors which have their Style property set to EditCheckStyle.Button.

I have an UltraButton on the same form.

The UltraCheckEditors have a blue border around them.

There are other differences in the appearance between the UltraButton and the UltraCheckEditors.

My goal is that the UltraButton and UltraCheckEditors have the same style and appearance, when the UltraCheckEditors are not in the toggled mode.

How can I accomplish this?

So far I have tried code lines like the following without any success:

ultraCheckEditor.UseOsThemes = DefaultableBoolean.False;

ultraCheckEditor.ButtonStyle = ultraButton.ButtonStyleResolved;

ultraCheckEditor.Appearance = ultraButton.Appearance;