The VCL Styles apply a skin to all the VCL application, but you can disable the vcl styles for a particular control class. So if you want disable the VCL style for a particular form you can use the RegisterStyleHook function passing the type of the form and the TStyleHook class which is a empty style hook class.
This line of code will disable the VCl style in all the forms of the type TFormChild
TStyleManager.Engine.RegisterStyleHook(TFormChild, TStyleHook);
Now if you run this code all controls of the form TFormChild will still painted with the vcl style, so to fix that you must disable the default Style hook for all the controls of the form using a trick like this
unit uChild;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
type
TButton = class(Vcl.StdCtrls.TButton); //this declaration is only for disable the TButton of this form
TFormChild = class(TForm)
Button1: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;
and now you can disable the vcl styles of the tbutton of this form as well with this code
TStyleManager.Engine.RegisterStyleHook(uChild.TButton, TStyleHook);
If you want more info about the use of the TStyleHook Class check this article Exploring Delphi XE2 – VCL Styles Part II
Stylesit's all or nothing. IOW, if you useStyles, they apply to every single form in your app, and there's no way to selectively enable/disable them on a per-form basis. – Ken White Dec 22 '11 at 2:23