如何在网格单元格中插入按钮?

Posted

技术标签:

【中文标题】如何在网格单元格中插入按钮?【英文标题】:how can I insert a button in grid cell? 【发布时间】:2014-09-04 09:59:25 【问题描述】:

如果您希望单元格显示按钮,则以下内容适用于 Delphi XE5。 但是,在 Delphi XE6 中却没有。

Type
    TSimpleLinkCell = class(TTextCell)
    protected
        FButton: TSpeedButton;
        procedure ButtonClick(Sender: TObject);
    public
        constructor Create(AOwner: TComponent); reintroduce;
    end;

constructor TSimpleLinkCell.Create(AOwner: TComponent);
begin
    inherited Create(AOwner);
    Self.TextAlign := TTextAlign.taLeading;
    FButton := TSpeedButton.Create(Self);
    FButton.Parent := Self;
    FButton.Height := 16;
    FButton.Width := 16;
    FButton.Align := TAlignLayout.alRight;
    FButton.OnClick := ButtonClick;
end;

如何在 Delphi XE6 中进行上述工作?

【问题讨论】:

我已经测试了你的答案并且它有效。你能说这是正确的反应吗?请! 【参考方案1】:
    您的 SpeedButton 没有文本,因此在您使用鼠标进入按钮之前不会显示任何内容

    如果你将这个对象插入到网格中的 TColumn 类型,它将起作用。这是您的代码的完整工作示例(在 XE4 上测试):

    unit Unit5;
    
    interface
    
    uses
      System.SysUtils, System.Types, System.UITypes, System.Rtti, System.Classes,
      System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Dialogs,
      FMX.StdCtrls, FMX.Layouts, FMX.Grid;
    
    type
      TSimpleLinkCell = class(TTextCell)
      protected
          FButton: TSpeedButton;
          procedure ButtonClick(Sender: TObject);
       public
          constructor Create(AOwner: TComponent); reintroduce;
      end;
    
      TButtonColumn=class(TColumn)
      protected
        function CreateCellControl: TStyledControl;override;
      end;
    
      TForm5 = class(TForm)
        Grid1: TGrid;
        procedure FormCreate(Sender: TObject);
      private
         Private declarations 
      public
         Public declarations 
      end;
    
    var
      Form5: TForm5;
    
    implementation
    $R *.fmx
    
    constructor TSimpleLinkCell.Create(AOwner: TComponent);
    begin
        inherited Create(AOwner);
        Self.TextAlign := TTextAlign.taLeading;
        FButton := TSpeedButton.Create(Self);
        FButton.Parent := Self;
        FButton.Height := 16;
        FButton.Width := 16;
        FButton.Align := TAlignLayout.alRight;
        FButton.OnClick := ButtonClick;
    //    FButton.Text:='Button';
    end;
    
    procedure TSimpleLinkCell.ButtonClick(Sender: TObject);
    begin
      ShowMessage('The button is clicked!');
    end;
    
    function TButtonColumn.CreateCellControl: TStyledControl;
    var
      cell:TSimpleLinkCell;
    begin
      cell:=TSimpleLinkCell.Create(Self);
      Result:=cell;
    end;
    
    procedure TForm5.FormCreate(Sender: TObject);
    begin
      Grid1.AddObject(TButtonColumn.Create(Grid1));
    end;
    
    end.
    

【讨论】:

以上是关于如何在网格单元格中插入按钮?的主要内容,如果未能解决你的问题,请参考以下文章

要把图片插入到EXCEL的单元格中,如何操作?

如何在单击按钮时使 ag 网格中的所有单元格可编辑

如何使用文本字段 UITableView 从自定义单元格中获取值?

如何将数据放入WPf数据网格特定单元格中

如何将单元格插入 UITableViewController

如何在单个单元格中插入多个超链接?