fgrid.pas
来自「TntExUpdate 是 流行的 TntUnicodeControls控件的扩」· PAS 代码 · 共 35 行
PAS
35 行
unit FGrid;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Grids, TntGrids;
type
TFFilterGrid = class(TForm)
TntStringGrid1: TTntStringGrid;
BitBtn3: TButton;
BitBtn4: TButton;
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
FFilterGrid: TFFilterGrid;
implementation
{$R *.dfm}
procedure TFFilterGrid.FormCreate(Sender: TObject);
begin
TntStringGrid1.Cells[0,0] := 'Filter Name';
TntStringGrid1.Cells[0,1] := 'Filter';
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?