このような 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);