這篇文章主要介紹了C#實作在listview中插入圖片實例程式碼的相關資料,需要的朋友可以參考下
C#實作在listview中插入圖片實例程式碼
第一步:在窗體中拖曳到ListView控制項與imageList控制項;
第二步:設定imageList控制項的Images屬性,加入你想要的圖片;
#第三個步驟:設定ListView控制項的SmallImageList、 LargeImageList、StateImageList屬性為imageList;
第4步:編輯ListView控制項的ImageIndex行為你就會發現圖片成功顯示出來了!
附:在ListView控制項中新增選項的程式碼
private void button1_Click(object sender, EventArgs e) { if (textBox1.Text == "") { MessageBox.Show("添加的内容不能为空"); textBox1.Focus(); //获取焦点 } else { if (listView1.Items.Count > 0) //判断列表框中是否有项 { //循环比较是否有重复项,有则放弃添加 for (int i = 0; i < listView1.Items.Count; i++) { if (string.Compare(listView1.Items[i].Text.ToString(), textBox1.Text) == 0) { MessageBox.Show("项目重复,不能添加!"); textBox1.Text = ""; //清空文本框 textBox1.Focus(); return; } } listView1.Items.Add(textBox1.Text.ToString()); textBox1.Text = ""; } else { listView1.Items.Add(textBox1.Text.ToString()); //将文本框中的数据添加到列表框 textBox1.Text = ""; } } }
以上是C#實作在listview中插入圖片的範例程式碼分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!