加載圖標進入我的列表視圖時出現問題。我可以讓圖像在大視野下工作,但不能詳細說明,不太確定我做錯了什麼。使用View.Details向ImageList填充ListView
private void CreateList()
{
listView1.View = View.Details;
listView1.Columns.Add("Icon", -2, HorizontalAlignment.Center);
listView1.Columns.Add("Name", -2, HorizontalAlignment.Left);
imageList1.ImageSize = new Size(32, 32);
for (int i = 0; i < subKeys.Length; i++)
{
if (subKeys[i].Contains("App"))
{
imagePath = subKeys[i];
if (System.IO.File.Exists(imagePath))
{
imageList1.Images.Add(Image.FromFile(imagePath));
}
numberOfImages++;
}
}
listView1.StateImageList = this.imageList1;
}
啊不適用於我:(可能是與我正在做的其他事情的問題:P – cheeseman 2012-04-19 13:26:06
確保你正在設置圖像鍵/索引,更新了答案。 – 2012-04-19 13:29:23
非常好,謝謝!不得不取消註釋我的方法,它首先運行,再次感謝! – cheeseman 2012-04-19 13:32:52