Table of Contents

Getting started with TMS FNC Styles

Prerequisites

  • TMS FNC Core installed and the runtime package added to the project.

Add the component

  1. Drop TTMSFNCStylesManager from the TMS FNC UI palette page onto a form or data module.

Apply a built-in style at design time

  1. Select StylesManager1 in the Object Inspector.
  2. Set the Style property 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.