📄 mdilpeform.pas
字号:
unit MdIlpeForm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Buttons;
type
TIntListPEForm = class(TForm)
BitBtn1: TBitBtn;
BitBtn2: TBitBtn;
Memo1: TMemo;
BitBtn3: TBitBtn;
procedure BitBtn3Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
{var
IntListPEForm: TIntListPEForm;}
implementation
{$R *.DFM}
procedure TIntListPEForm.BitBtn3Click(Sender: TObject);
var
I: Integer;
begin
for I := 0 to 9 do
Memo1.Lines [I] := IntToStr (I * 100);
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -