Skip to content

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.

Classic 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

https://theroadtodelphi.files.wordpress.com/2015/04/32.png

Modern Dialogs

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

https://theroadtodelphi.files.wordpress.com/2015/07/vclstylesw10.png

Related articles

Clone this wiki locally