13.WinForm练习--listBox控件使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了13.WinForm练习--listBox控件使用相关的知识,希望对你有一定的参考价值。

namespace _13.ListBox控件的使用
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//新建个集合对象用于存储图片的全路径
List<string> list = new List<string>();
private void Form1_Load(object sender, EventArgs e)
{
//当程序运行时,将图片加载到listBox
//获得图片所在的文件夹全路径
string[] path = Directory.GetFiles(@"C:\Users\Administrator.USER-20180925HC\Desktop\pic", "*.jpg");

        //通过一个循环将图片加载至listBox
        for (int i = 0; i < path.Length; i++)
        {
            //获得文件名
            string fileName = Path.GetFileName(path[i]);
            listBox1.Items.Add(fileName);

            //将图片的全路径添加到List泛型集合中
            list.Add(path[i]);
        }
    }

    private void listBox1_DoubleClick(object sender, EventArgs e)
    {
        //双击listBox图片名,右侧pictureBox显示对应的图片
        pictureBox1.Image = Image.FromFile(list[listBox1.SelectedIndex]);
    }
}

}

以上是关于13.WinForm练习--listBox控件使用的主要内容,如果未能解决你的问题,请参考以下文章

Python中tkinter控件中的Listbox控件详解

VB.NET Listbox1控件

VB.NET Listbox1控件

VB中的list控件是啥?

Python中tkinter中控件的使用(6.Listbox列表框(添加滚动条))

Python中tkinter中控件的使用(6.Listbox列表框(单击多选))