📄 distribution.~pas
字号:
unit Distribution;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls;
type
TDistributionForm = class(TForm)
Image: TImage;
Image1: TImage;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
Label6: TLabel;
Label7: TLabel;
Label8: TLabel;
Label9: TLabel;
Label10: TLabel;
Label11: TLabel;
Label12: TLabel;
Label13: TLabel;
Edit1: TEdit;
Button1: TButton;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
DistributionForm: TDistributionForm;
implementation
uses CHILDWIN;
{$R *.dfm}
procedure TDistributionForm.Button1Click(Sender: TObject);
begin
Close;
end;
procedure TDistributionForm.Button2Click(Sender: TObject);
begin
//MDIChild.twovalue1Click(Sender);//.twovalueClick(Sender);
MDIChild.BeanPropertyStatisticClick(Sender);
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -