我正在尝试为 ListView 中的前两列添加图像。但我无法为第二列添加图像。我的代码是..
foreach ( DataRow row in _dtCategories.Rows )
{
ListViewItem item = new ListViewItem ( );
for ( int i = 1 ; i < _dtCategories.Columns.Count ; i++ )
{
item.ImageIndex = 0;
item.SubItems.Add ( " " );
item.ImageIndex = 1;
item.SubItems.Add ( row [ "Category" ].ToString ( ) );
}
lvCategories.Items.Add ( item );
}
所以我的输出是..
但我想在前两列中添加图像。
帮我..