📄 uformviewoptionsnextprev.pas
字号:
unit UFormViewOptionsNextPrev;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TFormViewOptionsNextPrev = class(TForm)
Button1: TButton;
Button2: TButton;
GroupBox1: TGroupBox;
chkShowAll: TRadioButton;
chkShowCurrent: TRadioButton;
chkShowCustom: TRadioButton;
chkTypeText: TCheckBox;
chkTypeImages: TCheckBox;
chkTypeMedia: TCheckBox;
chkTypeWeb: TCheckBox;
procedure chkShowAllClick(Sender: TObject);
procedure FormShow(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
implementation
{$R *.dfm}
procedure TFormViewOptionsNextPrev.chkShowAllClick(Sender: TObject);
var
en: boolean;
begin
en:= chkShowCustom.Checked;
chkTypeText.Enabled:= en;
chkTypeImages.Enabled:= en;
chkTypeMedia.Enabled:= en;
chkTypeWeb.Enabled:= en;
end;
procedure TFormViewOptionsNextPrev.FormShow(Sender: TObject);
begin
chkShowAllClick(Self);
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -