我想以编程方式创建一个这样的 ListView(我知道有更好的控件可以做到这一点,但我不希望使用其他控件,因为我只想衡量使用列表视图执行此操作的性能) :
|-----------------------------------------------------------|
|Column One Header |Column 2 Header |Column Three Header |
|-----------------------------------------------------------|
|Cell Text 1 |Cell Text 2 |Cell Text 3 |
|-----------------------------------------------------------|
|Cell Text 4 |Cell Text 5 |Cell Text 6 |
|-----------------------------------------------------------|
我在这方面找不到太多东西,这就是我现在所坚持的(顺便说一下,我正在使用 WPF):
ListView listView = new ListView();
listView.Height = 203;
listView.Width = 501;
listView.Margin = new Thickness(0, 0, 0, 0);
Grid.SetRow(listView, 1);
Grid.SetColumn(listView, 0);
mainGrid.Children.Add(listView);