Delphi - 排序后字符串网格出现问题
Delphi - problem with string grid after sorting
所以我在此处提到的程序中的字符串网格:() 从最小到最大完美排序,但网格 glitches/goes 在某种程度上是乱七八糟的。排序后的行被扔到网格的末尾(有时甚至没有行号或行保留其编号)。所以我的问题是如何在不完全破坏网格的情况下对字符串网格进行排序?
我使用的代码:
//code that sorts the grid
procedure TfrmPuntehou.SortSTLGrid(var grid:TStringGrid; columntotal:integer);
const
separator = ',';
var
iCount,i,j,k,iPos:integer;
TheList:TStringList;
sString,sTempString:string;
begin
//procedure to sort from small to large values
//get row amount
iCount:=grid.RowCount;
//create list
TheList:=TStringList.Create;
TheList.Sorted:=False;
//start of try..finally block
try
begin
//fill the list
for i := 1 to (iCount - 1) do
begin
TheList.Add(grid.Rows[i].Strings[columntotal]+separator+grid.Rows[i].Text);
end;
//sort the list
TheList.Sort;
for k := 1 to TheList.Count do
begin
//take the line of the list and put it in a string var
sString:= TheList.Strings[(k-1)];
//get separator pos in that string
iPos:=AnsiPos(separator,sString);
sTempString:='';
//remove separator and the column text at the front of the string
sTempString:=Copy(sString,(iPos+2),Length(sString));
TheList.Strings[(k-1)]:= '';
TheList.Strings[(k-1)]:= sTempString;
end;
//fill the grid
for j:= 1 to (iCount - 1) do
begin
grid.Rows[j].Text := TheList.Strings[(J-1)] ;
end;
end;
finally
TheList.Free;
end;
//end of try..finally block
end;
//code that I use to customize the grid on startup
procedure TfrmPuntehou.TitlesAndNumbering(grid: TStringGrid);
var
i:integer;
begin
//procedure that customizes the grid entered as a parameter
with grid do
begin
//names the columns
Cells[0,0]:='Row Number';
Cells[1,0]:='Car Number';
Cells[2,0]:='Name';
Cells[3,0]:='Licence';
Cells[4,0]:='Heat 1';
Cells[5,0]:='Heat 2';
Cells[6,0]:='Subtotal 1';
Cells[7,0]:='Heat 3';
Cells[8,0]:='Subtotal 2';
Cells[9,0]:='Final';
Cells[10,0]:='Final Total';
//for loop to number the rows
for i := 1 to rowMax do
begin
Cells[0,i]:=IntToStr(i);
end;
//end of for
//other extra settings
RowCount:=rowMax;
ColCount:=colMax;
DefaultColWidth:=100;
FixedCols:=0;
FixedRows:=1;
end;
end;
截图说明问题:
排序前:
排序后:
在此先感谢您的帮助!
亲切的问候
PrimeBeat
总结评论中的答案:
您的问题是因为您将 RowCount
设置为 RowMax
,所以添加了很多空行。排序后,空单元格会排在列表顶部。
有两种解决方案:
- 您停止添加空行,排序将按预期进行
- 设法使用
comparer
进行排序,使空字符串比所有其他字符串更大,而不是默认值更小。参见 documentation for CustomSort
请注意,您可以随时更改行数。只需分配 RowCount
属性。例如,当您添加一行时,执行:
Grid.RowCount := Grid.RowCount + 1;
当你删除最后一行时,执行:
Grid.RowCount := Grid.RowCount - 1;
所以我在此处提到的程序中的字符串网格:(
我使用的代码:
//code that sorts the grid
procedure TfrmPuntehou.SortSTLGrid(var grid:TStringGrid; columntotal:integer);
const
separator = ',';
var
iCount,i,j,k,iPos:integer;
TheList:TStringList;
sString,sTempString:string;
begin
//procedure to sort from small to large values
//get row amount
iCount:=grid.RowCount;
//create list
TheList:=TStringList.Create;
TheList.Sorted:=False;
//start of try..finally block
try
begin
//fill the list
for i := 1 to (iCount - 1) do
begin
TheList.Add(grid.Rows[i].Strings[columntotal]+separator+grid.Rows[i].Text);
end;
//sort the list
TheList.Sort;
for k := 1 to TheList.Count do
begin
//take the line of the list and put it in a string var
sString:= TheList.Strings[(k-1)];
//get separator pos in that string
iPos:=AnsiPos(separator,sString);
sTempString:='';
//remove separator and the column text at the front of the string
sTempString:=Copy(sString,(iPos+2),Length(sString));
TheList.Strings[(k-1)]:= '';
TheList.Strings[(k-1)]:= sTempString;
end;
//fill the grid
for j:= 1 to (iCount - 1) do
begin
grid.Rows[j].Text := TheList.Strings[(J-1)] ;
end;
end;
finally
TheList.Free;
end;
//end of try..finally block
end;
//code that I use to customize the grid on startup
procedure TfrmPuntehou.TitlesAndNumbering(grid: TStringGrid);
var
i:integer;
begin
//procedure that customizes the grid entered as a parameter
with grid do
begin
//names the columns
Cells[0,0]:='Row Number';
Cells[1,0]:='Car Number';
Cells[2,0]:='Name';
Cells[3,0]:='Licence';
Cells[4,0]:='Heat 1';
Cells[5,0]:='Heat 2';
Cells[6,0]:='Subtotal 1';
Cells[7,0]:='Heat 3';
Cells[8,0]:='Subtotal 2';
Cells[9,0]:='Final';
Cells[10,0]:='Final Total';
//for loop to number the rows
for i := 1 to rowMax do
begin
Cells[0,i]:=IntToStr(i);
end;
//end of for
//other extra settings
RowCount:=rowMax;
ColCount:=colMax;
DefaultColWidth:=100;
FixedCols:=0;
FixedRows:=1;
end;
end;
截图说明问题:
排序前:
排序后:
在此先感谢您的帮助!
亲切的问候
PrimeBeat
总结评论中的答案:
您的问题是因为您将 RowCount
设置为 RowMax
,所以添加了很多空行。排序后,空单元格会排在列表顶部。
有两种解决方案:
- 您停止添加空行,排序将按预期进行
- 设法使用
comparer
进行排序,使空字符串比所有其他字符串更大,而不是默认值更小。参见 documentation for CustomSort
请注意,您可以随时更改行数。只需分配 RowCount
属性。例如,当您添加一行时,执行:
Grid.RowCount := Grid.RowCount + 1;
当你删除最后一行时,执行:
Grid.RowCount := Grid.RowCount - 1;