jgbbstructrc.pas

来自「公积金监管系统客户端,是新疆公积金监管系统的客户端软件」· PAS 代码 · 共 37 行

PAS
37
字号
unit JgBbStructRC;

interface

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

type
  TBbStructRC = class(TForm)
    Label1: TLabel;
    Label2: TLabel;
    Edit1: TEdit;
    ComboBox1: TComboBox;
    BitBtn1: TBitBtn;
    BitBtn2: TBitBtn;
    procedure FormCreate(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  BbStructRC: TBbStructRC;

implementation

{$R *.DFM}

procedure TBbStructRC.FormCreate(Sender: TObject);
begin
  Combobox1.ItemIndex :=0;
end;

end.

⌨️ 快捷键说明

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