📄 friendinfo.pas
字号:
unit FriendInfo;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Grids, StdCtrls;
type
TFriendInfoDlg = class(TForm)
InfoGrid: TStringGrid;
Button1: TButton;
private
{ Private declarations }
public
{ Public declarations }
class procedure Execute;
end;
implementation
uses info;
{$R *.DFM}
{ TFriendInfoDlg }
class procedure TFriendInfoDlg.Execute;
var
i:Integer;
begin
with TFriendInfoDlg.Create(Application) do
begin
InfoGrid.RowCount:=nInfoCnt;
for i:=0 to nInfoCnt-1 do
begin
InfoGrid.Cells[0,i]:=IntToStr(i);
InfoGrid.Cells[1,i]:=
end;
Free;
end;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -