📄 unitinherited1.pas
字号:
unit UnitInherited1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
sFrameAdapter, StdCtrls, sMemo, sComboBoxes, sTooledit, sCurrencyEdit, sComboEdit,
sCurrEdit, sCustomComboEdit, Mask, sEdit, sSpinEdit, sComboBox, sMaskEdit,
sAlphaListBox, sLabel, ComCtrls, sRichEdit, sButton, sDialogs;
type
TFrameInherited1 = class(TFrame)
sFrameAdapter1: TsFrameAdapter;
sMemo1: TsMemo;
sSpinEdit1: TsSpinEdit;
sEdit1: TsEdit;
sMaskEdit1: TsMaskEdit;
sComboBox2: TsComboBox;
sLabel1: TsLabel;
sRichEdit1: TsRichEdit;
sButton1: TsButton;
sOpenDialog1: TOpenDialog;
sListBox1: TsListBox;
procedure sButton1Click(Sender: TObject);
end;
implementation
uses sVCLUtils;
{$R *.DFM}
procedure TFrameInherited1.sButton1Click(Sender: TObject);
begin
if sOpenDialog1.Execute then sRichedit1.Lines.LoadFromFile(sOpenDialog1.fileName);
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -