⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fgrid.pas

📁 TntExUpdate 是 流行的 TntUnicodeControls控件的扩展包.包括很难找到的 TntJVCL 也在里面. TntSysUtils2.pas/TntSysUtilsEx.pa
💻 PAS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -