Getting started with TMS FNC Responsive Manager
Prerequisites
- TMS FNC Core installed and the runtime package added to the project.
Add the component
- Drop
TTMSFNCResponsiveManagerfrom the TMS FNC UI palette page onto a form.
Define a responsive item
- Open the Items collection editor.
- Add an item and set
Componentto the target control (e.g.Panel1). - Add constraints: set
Widthbreakpoint and theLeft,Widthvalues to apply at that size.
React to size changes in code
ResponsiveManager1.OnChanged := procedure
begin
// called after the manager applies a constraint set
end;
Trigger a manual update
ResponsiveManager1.Update;
The manager normally triggers automatically on OnResize.
Next steps
- Guides — breakpoints, property mapping, the state manager, and design-time configuration.
- API reference — full class reference.