-
Notifications
You must be signed in to change notification settings - Fork 117
VclStylesSysControls
Rodrigo Ruz edited this page Aug 1, 2016
·
6 revisions
The Vcl.Styles.Utils add support for styling for the Common Windows dialogs (Open/Save File, Find/Replace, Color, Page Setup, Print) which in Delphi are wrapped for the TOpenDialog, TSaveDialog and so on.
Follow the next instructions to style the dialogs.
To activate this functionality the UseLatestCommonDialogs global variable must be set to false.
Also you must include these units on the project.
- Vcl.Styles.Utils.Menus //Style Popup and Shell Menus (class #32768)
- Vcl.Styles.Utils.Forms //Style dialogs box (class #32770)
- Vcl.Styles.Utils.StdCtrls //Style buttons, static, and so on
- Vcl.Styles.Utils.ComCtrls //Style SysTreeView32, SysListView32
- Vcl.Styles.Utils.ScreenTips //Style the tooltips_class32 class
- Vcl.Styles.Utils.SysControls
- Vcl.Styles.Utils.SysStyleHook
To activate this functionality the UseLatestCommonDialogs global variable must be set to true.
Also you must include these units on the project.
- Vcl.Styles.Hooks
- Vcl.Styles.Utils.Menus //Style Popup and Shell Menus (class #32768)
- Vcl.Styles.Utils.Forms //Style dialogs box (class #32770)
- Vcl.Styles.Utils.StdCtrls //Style buttons, static, and so on
- Vcl.Styles.Utils.ComCtrls //Style SysTreeView32, SysListView32
- Vcl.Styles.Utils.ScreenTips //Style the tooltips_class32 class
- Vcl.Styles.Utils.SysControls
- Vcl.Styles.Utils.SysStyleHook