Getting started with TMS FNC Styles
Prerequisites
- TMS FNC Core installed and the runtime package added to the project.
Add the component
- Drop
TTMSFNCStylesManagerfrom the TMS FNC UI palette page onto a form or data module.
Apply a built-in style at design time
- Select
StylesManager1in the Object Inspector. - Set the
Styleproperty to one of the built-in values (e.g.Dark,Ocean,Metro).
All FNC controls on the form pick up the style automatically.
Switch styles at runtime
StylesManager1.Style := 'Dark';
StylesManager1.Apply;
Load a style from a file
StylesManager1.LoadFromFile('mytheme.tss');
StylesManager1.Apply;
Next steps
- Guides — built-in styles, custom styles, per-control overrides, and runtime switching.
- API reference — full class reference.