Can syncfusion theme be applied to default controls?
I did everything said in the instruction, but default controls like textbox or button are not changed
5 Replies
Unknown User•9mo ago
Message Not Public
Sign In & Join Server To View
Impossible, as the default WinForms controls are rendered on their own. That's why all commercial control libraries have their own
TextBox
and Button
because they need to fully take over the rendering to apply themes.I understood, thank you!
That was kind of silly mistake of mine. I couldn't find in their documentation that I need to download additional package. I've just downloaded the package for "ButtonAdv" for the button with icon and it goes along with
Syncfusion.Shared.WPF
which actually applies theme to the standard controls. Now theme is working with standard controlsDidn't notice you were using WPF. Then yes, WPF allows you to override them (because anything is custom rendered, not like WinForms).