博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Chapter 6. ListBox控件(双击播放图片)
阅读量:5944 次
发布时间:2019-06-19

本文共 905 字,大约阅读时间需要 3 分钟。

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]);        }    }}

 

转载于:https://www.cnblogs.com/xiao55/p/5642042.html

你可能感兴趣的文章
简单粗暴的“Debug模式”
查看>>
汇编实验一
查看>>
Python 面试总结
查看>>
ansible register when: result | succeeded when: item.rc != 0
查看>>
有赞MySQL自动化运维之路—ZanDB
查看>>
ssm中shiro的使用
查看>>
10个操作数的随机四则运算(二)
查看>>
django中聚合aggregate和annotate GROUP BY的使用方法
查看>>
TFS简介
查看>>
docker管理平台 shipyard安装
查看>>
安装django
查看>>
Bootstrap3 栅格系统-简介
查看>>
ADODB类库操作查询数据表
查看>>
第五章(5)Libgdx应用框架之线程
查看>>
【java】File的使用:将字符串写出到本地文件,大小0kb的原因
查看>>
安卓音乐播放器开发实例
查看>>
微信支付开发教程
查看>>
Junit指定测试执行顺序
查看>>
PHP put提交和获取数据
查看>>
s3接口认证说明
查看>>