devicecaps.pas

来自「刻录机源码」· PAS 代码 · 共 53 行

PAS
53
字号
unit DeviceCaps;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  StdCtrls, ExtCtrls;

type
  TForm2 = class(TForm)
    Label1: TLabel;
    Panel2: TPanel;
    Label2: TLabel;
    Label3: TLabel;
    ReadCDR: TCheckBox;
    ReadCDRW: TCheckBox;
    WriteCDR: TCheckBox;
    WriteCDRW: TCheckBox;
    WriteDVDPR: TCheckBox;
    UnderrunProtection: TCheckBox;
    ReadDVD: TCheckBox;
    ReadDVDRAM: TCheckBox;
    ReadDVDRW: TCheckBox;
    WriteDVDR: TCheckBox;
    WriteDVDRAM: TCheckBox;
    Button1: TButton;
    ReadDVDPR: TCheckBox;
    WriteDVDPRW: TCheckBox;
    WriteDVDRW: TCheckBox;
    ReadDVDPRW: TCheckBox;
    ReadDVDR: TCheckBox;
    WriteTest: TCheckBox;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form2: TForm2;

implementation

{$R *.DFM}

procedure TForm2.Button1Click(Sender: TObject);
begin
  Close;
end;

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?