unit7.~pas
来自「简单的团员管理系统.是书上的一个示例,大家共享」· ~PAS 代码 · 共 28 行
~PAS
28 行
unit Unit7;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, DB, DBTables, StdCtrls;
type
TForm7 = class(TForm)
RadioButton1: TRadioButton;
RadioButton2: TRadioButton;
Table1: TTable;
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form7: TForm7;
implementation
{$R *.dfm}
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?