如何将列放入 FireMonkey TListBox,然后从 TListBox 的行的列中获取值。我正在使用这种方法:
vListRow := 'Col1Stuff' + '^I' + 'Col2Stuff';
这不是给我第一列中的 Col1Stuff 和第二列中的 Col2Stuff。
我尝试使用 TStringGrid Firemonkey 控件作为替代方法,但以下方法也不起作用:
vStringGrid.Cells[0,1] := '嗨'; vStringGrid.Cells[0,2] := '那里';
这在 TStringGrid 中没有任何内容。
有小费吗?