StylesForm.pas
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit StylesForm;
  2. interface
  3. uses
  4.   SysUtils, Types, Classes, Variants, QGraphics, QControls, QForms, QDialogs,
  5.   QStdCtrls, QStyle, QComCtrls, QMenus, QTypes;
  6. type
  7.   TForm1 = class(TForm)
  8.     Button1: TButton;
  9.     ListBox1: TListBox;
  10.     CheckBox1: TCheckBox;
  11.     ComboBox1: TComboBox;
  12.     ScrollBar1: TScrollBar;
  13.     TrackBar1: TTrackBar;
  14.     Edit1: TEdit;
  15.     GroupBox1: TGroupBox;
  16.     RadioButton1: TRadioButton;
  17.     RadioButton2: TRadioButton;
  18.     TreeView1: TTreeView;
  19.     ListBox2: TListBox;
  20.     procedure ListBox1DblClick(Sender: TObject);
  21.   private
  22.     { Private declarations }
  23.   public
  24.     { Public declarations }
  25.   end;
  26. var
  27.   Form1: TForm1;
  28. implementation
  29. {$R *.xfm}
  30. procedure TForm1.ListBox1DblClick(Sender: TObject);
  31. begin
  32.   Application.Style.DefaultStyle :=
  33.     TDefaultStyle (ListBox1.ItemIndex);
  34. end;
  35. end.