c# picturebox_imagelist_image_clear_removeat
//載入影像
private void button2_Click(object sender, EventArgs e)
{
if (imageList1.Images.Count==0)
{
MessageBox.Show("IMAGELIST沒有影像,顯示個屁喲");
}
pictureBox1.Image = imageList1.Images[0];
}
//移除影像
private void button3_Click(object sender, EventArgs e)
{
//下述程式碼報index無效錯誤了 下述程式碼不能重複點選移除影像
//按鈕,因為索引會發生變化
imageList1.Images.RemoveAt(0);
//images.clear移除imagelist所有影像
//imageList1.Images.Clear();
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-717326/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【C#】Learn C# in X minutesC#
- [C#]C#中字串的操作C#字串
- [C#]C#時間日期操作C#
- C#C#
- C# 語言歷史版本特性(C# 1.0到C# 8.0彙總)C#
- C#語言歷史版本特性(C# 1.0到C# 8.0彙總)C#
- C# 9.0 正式釋出了(C# 9.0 on the record)C#
- C# ActivatorC#
- C# on DevCloudC#devCloud
- C# DbHeplerC#
- C# FirstOrDefaultC#
- C# 概念C#
- C#反射C#反射
- c# 方法C#
- c# ArraySegmentC#
- C# dynamicC#
- C# is與asC#
- Thrift c#C#
- C# HexEditC#
- c# abstractC#
- C# BackgroudWorkerC#
- XMLOperator[C#]XMLC#
- c# listviewC#View
- C#字串C#字串
- 《Effective C#》C#
- C#方法C#
- C# 物件C#物件
- C#特性C#
- c# channelC#
- C# ViewStateC#View
- C# 打包C#
- 重學c#系列——c#執行原理(二)C#
- C#神器"BlockingCollection"類實現C#神仙操作C#BloCGC
- C#入門之C#特點及HelloWorld程式C#
- C#基礎系列--C#中委託與事件(三)C#事件
- C#基礎系列--C#中委託與事件(一)C#事件
- 【C#開發】C#的協變和逆變C#
- C#閉包C#