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

📄 uformviewoptionsnextprev.pas

📁 支持版本:Delphi 5-2009, C++Builder 5-2009 ATViewer特性: Text, Binary, Hex, Unicode:所有文件
💻 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 + -