⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 u5_6.pas

📁 前言 随着旅游业的发展
💻 PAS
字号:
unit U5_6;

interface

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

type
  TF5_6 = class(TForm)
    Panel1xb: TPanel;
    Label1xb: TLabel;
    Editxb: TEdit;
    SpeedButton1xb: TSpeedButton;
    Panel1zb: TPanel;
    Label1: TLabel;
    Panel1sh: TPanel;
    Label2sh: TLabel;
    Panel1sh1: TPanel;
    SpeedButton1kh: TSpeedButton;
    SpeedButton1gb: TSpeedButton;
    OpenDialog1: TOpenDialog;
    procedure SpeedButton1xbClick(Sender: TObject);
    procedure SpeedButton1gbClick(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  F5_6: TF5_6;

implementation

{$R *.dfm}

procedure TF5_6.SpeedButton1xbClick(Sender: TObject);
begin
  openDialog1.Execute;
end;

procedure TF5_6.SpeedButton1gbClick(Sender: TObject);
begin
  Close;
end;

end.

⌨️ 快捷键说明

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