有谁知道如何取消选择FireMonkey TStringgrid中的单元(换句话说,我需要知道选择了哪个单元以及如何取消选择)...?

我们正在使用Delphi Berlin 10.1

提前致谢。

最佳答案

要获取当前选定的行,请使用Selected属性。要获取当前选定的列,请使用ColumnIndex属性。行和列的索引从0开始,

要取消选择,可以选择将SelectedColumnIndex设置为f。例如-1。

经过以下代码测试:

procedure TForm29.Button1Click(Sender: TObject);
var
  SelRow, SelCol: integer;
begin
  SelRow := StringGrid1.Selected;
  SelCol := StringGrid1.ColumnIndex;
  Memo1.Lines.Add(Format('SelRow: %d, SelCol: %d',[SelRow, SelCol]));
  StringGrid1.Selected := -1;
  StringGrid1.ColumnIndex := -1;
  SelRow := StringGrid1.Selected;
  SelCol := StringGrid1.ColumnIndex;
  Memo1.Lines.Add(Format('SelRow: %d, SelCol: %d',[SelRow, SelCol]));
end;

关于delphi - 如何在FireMonkey TStringgrid中取消选择单元格,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41716348/

10-11 02:29