C#實現在listview中插入圖片的範例程式碼分享

來源:互聯網
上載者:User
這篇文章主要介紹了C#實現在listview中插入圖片執行個體代碼的相關資料,需要的朋友可以參考下

C#實現在listview中插入圖片執行個體代碼

第一步:在表單中拖入ListView控制項和imageList控制項;

第二步:設定imageList控制項的Images屬性,添加你想要的圖片;

第三步:設定ListView控制項的SmallImageList、LargeImageList、StateImageList屬性為imageList;

第四步:編輯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 = "";        }       }    }
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.