?? unit2.~pas
字號:
unit Unit2;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, NEOFORM, ExtCtrls, ToolWin, ComCtrls, StdCtrls, Grids;
type
TGBKPForm2 = class(TGBKPForm)
Panel1: TPanel;
Panel2: TPanel;
Panel3: TPanel;
Panel4: TPanel;
Panel5: TPanel;
Panel6: TPanel;
Panel7: TPanel;
Panel8: TPanel;
GroupBox1: TGroupBox;
Panel9: TPanel;
Label1: TLabel;
Edit1: TEdit;
Label2: TLabel;
Edit2: TEdit;
Memo1: TMemo;
StringGridOrder: TStringGrid;
ComboBoxDevName: TComboBox;
Bevel1: TBevel;
Label3: TLabel;
Edit3: TEdit;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
GBKPForm2: TGBKPForm2;
implementation
{$R *.dfm}
procedure TGBKPForm2.FormCreate(Sender: TObject);
begin
inherited;
With StringGridOrder do
begin
Cells[0,0]:='序號$$M';
cells[1,0]:='名稱與規格$$M';
Cells[2,0]:='數量$$M';
Cells[3,0]:='配置說明$$R';
end;
end;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -