⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stylesform.pas

📁 Delphi7从入门到精通及附书源码 Delphi7从入门到精通及附书源码
💻 PAS
字号:
unit StylesForm;interfaceuses  SysUtils, Types, Classes, Variants, QGraphics, QControls, QForms, QDialogs,  QStdCtrls, QStyle, QComCtrls, QMenus, QTypes;type  TForm1 = class(TForm)    Button1: TButton;    ListBox1: TListBox;    CheckBox1: TCheckBox;    ComboBox1: TComboBox;    ScrollBar1: TScrollBar;    TrackBar1: TTrackBar;    Edit1: TEdit;    GroupBox1: TGroupBox;    RadioButton1: TRadioButton;    RadioButton2: TRadioButton;    TreeView1: TTreeView;    ListBox2: TListBox;    procedure ListBox1DblClick(Sender: TObject);  private    { Private declarations }  public    { Public declarations }  end;var  Form1: TForm1;implementation{$R *.xfm}procedure TForm1.ListBox1DblClick(Sender: TObject);begin  Application.Style.DefaultStyle :=    TDefaultStyle (ListBox1.ItemIndex);end;end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -