📄 devicecaps.pas
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -