📄 spewordframe.pas
字号:
unit SpeWordFrame;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, TntExtCtrls, TntStdCtrls,StdCtrls, FontFrame;
type
TFrameSpeWord = class(TFrame)
SWFontFrame: TFrameFont;
cbLineOnly: TTntCheckBox;
edtBValue: TEdit;
edtEValue: TEdit;
TntLabel1: TTntLabel;
TntLabel2: TTntLabel;
TntBevel1: TTntBevel;
TntLabel3: TTntLabel;
TntBevel2: TTntBevel;
TntLabel4: TTntLabel;
procedure cbLineOnlyClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
implementation
{$R *.dfm}
procedure TFrameSpeWord.cbLineOnlyClick(Sender: TObject);
begin
{ if cbLineOnly.Checked then
begin
edtEValue.Color := clBtnFace;
edtEValue.Enabled := False;
end
else begin
edtEValue.Color := clWindow;
edtEValue.Enabled := True;
end; }
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -