码迷,mamicode.com
首页 > 其他好文 > 详细

listBox和pictureBox的使用

时间:2017-08-23 14:51:09      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:ted   sel   eric   style   file   span   泛型   添加   partial   

重要属性:
pictureBox中SizeMode可以更改图像显示的尺寸大小。

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.IO; namespace ListBox { public partial class Form1 : Form { public Form1() { InitializeComponent(); } //为了在两个方法中都能访问到 String[] path = Directory.GetFiles("E:\\00","*.jpg"); private void Form1_Load(object sender, EventArgs e) { for ( int i = 0; i < path.Length; i++) { //根据路径名获取文件名称 string fileName = Path.GetFileName(path[i]); listBox1.Items.Add(fileName); } } private void listBox1_DoubleClick(object sender, EventArgs e) { //添加图片文件,需要添加全路径 pictureBox1.Image = Image.FromFile(path[listBox1.SelectedIndex]); } } }

 

使用List

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

namespace ListBox
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        //为了在两个方法中都能访问到
        List<string> list = new List<string>();

        private void Form1_Load(object sender, EventArgs e)
        {
            String[] path = Directory.GetFiles("E:\\00", "*.jpg");
             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)
        {
            //添加图片文件,需要添加全路径
            pictureBox1.Image = Image.FromFile(list[listBox1.SelectedIndex]);
        }

        private void listBox1_Click(object sender, EventArgs e)
        {
            
            pictureBox1.Image = Image.FromFile(list[listBox1.SelectedIndex]);
        }
    }
}

  

listBox和pictureBox的使用

标签:ted   sel   eric   style   file   span   泛型   添加   partial   

原文地址:http://www.cnblogs.com/my-cat/p/7417673.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!