📄 frmconvbw.pas
字号:
//------------------------------------------------------------------------------
// Apprehend Demo
// Copyright (c) 2000 : Copyright Adirondack Software & Graphics 1996-2001
// Created : 12-30-2000
// Last Modification : 04-10-2001
// Description : frmConvBW Unit
// Requires : LMD Controls and Preview Components
//------------------------------------------------------------------------------
unit frmConvBW;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Buttons, StdCtrls, ExtCtrls;
type
TfConvBW = class(TForm)
RadioGroup1: TRadioGroup;
Button1: TButton;
Button2: TButton;
GroupBox1: TGroupBox;
Label1: TLabel;
Edit1: TEdit;
SpeedButton1: TSpeedButton;
Panel1: TPanel;
procedure RadioGroup1Click(Sender: TObject);
procedure SpeedButton1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
fConvBW: TfConvBW;
implementation
{$R *.DFM}
procedure TfConvBW.RadioGroup1Click(Sender: TObject);
begin
GroupBox1.Enabled := RadioGroup1.ItemIndex = 0;
end;
procedure TfConvBW.SpeedButton1Click(Sender: TObject);
begin
edit1.enabled := not SpeedButton1.Down;
label1.enabled := not SpeedButton1.Down;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -