Delphi 2010 入门教程,越简单越好,新手
发布网友
发布时间:2022-05-16 08:33
我来回答
共1个回答
热心网友
时间:2023-10-16 21:07
================步骤:
1、运行Delphi
默认会创建一个名为Project1的Application,并且有一个默认的主窗口Form1
2、从控件面板的Standard页中拖一个按钮控件到Form1上,会默认命名为Button1
3、双击Button1,写上
ShowMessage('hello,world!');
4、点击Debug工具栏上的Run按钮,或按F9功能键运行
5、运行时 点击Button1按钮,就可以看到 hello, world!
================代码结果:
单元文件(扩展名为.pas)
HelloWorld.pas
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton; // 按钮
procere Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procere TForm1.Button1Click(Sender: TObject);
begin
ShowMessage('Hello,world!');
end;
end.
================其他文件还包括:
工程文件(扩展名为.dpr),
DFM文件(扩展名为.DFM),
这些都是在作以上步骤时自动生成的。