Chapter 5. ListBox控件(双击播放图片)

Posted 庚xiao午

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Chapter 5. ListBox控件(双击播放图片)相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;

namespace ListBox控件
{
    public partial class Form2 : Form
    {
        public Form2()
        {
            InitializeComponent();
        }

        private void Form2_Load(object sender, EventArgs e)
        {
            for (int i = 0; i < path.Length; i++)
            {
                string fileName = Path.GetFileName(path[i]);
                listBox1.Items.Add(fileName);
            }
        }

        string[] path = Directory.GetFiles(@"C:\\Users\\Administrator\\Desktop\\新建文件夹");

        //双击播放图片
        private void listBox1_DoubleClick(object sender, EventArgs e)
        {
            pictureBox1.Image = Image.FromFile(path[listBox1.SelectedIndex]);
        }
    }
}

 

以上是关于Chapter 5. ListBox控件(双击播放图片)的主要内容,如果未能解决你的问题,请参考以下文章

在C#如何实现从左边的listbox控件的内容移到右边的listbox控件

Avalonia跨平台入门第二十篇之语音播放问题

零元学Expression Blend 4 - Chapter 28 ListBox的基本运用与更改预设样式

c#中listbox选定指定项的事件

零元学Expression Blend 4 - Chapter 31 看如何简单的把SampleData 绑进ListBox里

零元学Expression Blend 4 - Chapter 29 ListBox与Button结合运用的简单功能