我想做那样的事情。我在StringGrid中有一个列表,我想通过选择单元格然后单击按钮来删除一行。然后此列表应该在没有此行的StringGrid中再次显示。我有删除行的最大问题,我尝试了一个程序,但它只删除了StringGrid中的行,而不是列表,我认为。
procedure DeleteRow(Grid: TStringGrid; ARow: Integer);
var
i: Integer;
begin
for i := ARow to Grid.RowCount - 2 do
Grid.Rows[i].Assign(Grid.Rows[i + 1]);
Grid.RowCount := Grid.RowCount - 1;
end;
请有人帮忙。 :)
答案 0 :(得分:2)
如果您使用的是标准VCL TStringGrid
(不使用最新版本中提供的实时绑定),则可以使用插入器类来访问受保护的TCustomGrid.DeleteRow
方法。
以下代码已在Delphi 2007中进行了测试。它使用表单上的简单TStringGrid
,默认列和单元格以及标准TButton
。
TForm.OnCreate
事件处理程序只是使用一些数据填充网格,以便更容易查看已删除的行。按钮单击事件每次单击时都会从stringgrid中删除第1行。
注意:代码不会进行错误检查以确保有足够的行。这是一个演示应用程序,而不是生产代码的示例。您的实际代码应该在尝试删除之前检查可用的行数。
// Interposer class, named to indicate it's use
type
THackGrid=class(TCustomGrid);
// Populates stringgrid with test data for clarity
procedure TForm1.FormCreate(Sender: TObject);
var
i, j: Integer;
begin
for i := 1 to StringGrid1.ColCount - 1 do
StringGrid1.Cells[i, 0] := Format('Col %d', [i]);
for j := 1 to StringGrid1.RowCount - 1 do
begin
StringGrid1.Cells[0, j] := Format('Row #d', [j]);
for i := 1 to StringGrid1.ColCount - 1 do
begin
StringGrid1.Cells[i, j] := Format('C: %d R: %d', [i, j]);
end;
end;
end;
// Deletes row 1 from the stringgrid every time it's clicked
// See note above for info about lack of error checking code.
procedure TForm1.Button1Click(Sender: TObject);
begin
THackGrid(StringGrid1).DeleteRow(1);
end;
如果您使用的是更新版本,并且已使用实时绑定将数据附加到网格,则只需从基础数据中删除该行,然后让实时绑定处理删除该行。
答案 1 :(得分:1)
可以检索选定的行StringGrid1.selected
,然后您可以调用以下过程。
procedure TUtils.DeleteRow(ARowIndex: Integer; AGrid: TStringGrid);
var
i, j: Integer;
begin
with AGrid do
begin
if (ARowIndex = RowCount) then
RowCount := RowCount - 1
else
begin
for i := ARowIndex to RowCount do
for j := 0 to ColumnCount do
Cells[j, i] := Cells[j, i + 1];
RowCount := RowCount - 1;
end;
end;
end;