Delphi

Adding a custom style selector to your VCL application

Adding a style selector menu to your application only takes a couple of lines of code and allows you to quickly update your existing user interface while providing added flexibilityto your customers. To add a style selector, I added a combobox to the form with the following code: uses VCL.Themes; procedure TForm9.StyleSelectorChange(Sender: TObject); begin …
Read more