form1.cs
来自「C#程序开发范例宝典 图书光盘附带源码 第五章」· CS 代码 · 共 71 行
CS
71 行
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Collections;
namespace Ex05_15
{
public partial class Form1 : Form
{
Hashtable ht=new Hashtable();
string str;
public Form1()
{
InitializeComponent();
str = Environment.CurrentDirectory + "//Image";
}
private void Form1_Load(object sender, EventArgs e)
{
DirectoryInfo dir = new DirectoryInfo(str);
GetAllFiles(dir);
foreach (DictionaryEntry de in ht)
this.comboBox1.Items.Add(de.Key);
}
public void GetAllFiles(DirectoryInfo dir)
{
FileSystemInfo[] fileinfo = dir.GetFileSystemInfos();
foreach (FileSystemInfo i in fileinfo)
{
if (i is DirectoryInfo)
{
GetAllFiles((DirectoryInfo)i);
}
else
{
string str = i.FullName;
int b = str.LastIndexOf("\\");
string strType = str.Substring(b + 1);
if (strType.Substring(strType.Length - 3) == "jpg" || strType.Substring(strType.Length - 3) == "bmp")
{
ht.Add(strType.Substring(0,strType.Length-4), strType);
}
}
}
}
private void button1_Click(object sender, EventArgs e)
{
if (ht.Values.Count > 0)
{
showPic(ht[this.comboBox1.Text].ToString());
}
else
{
MessageBox.Show("目前还没有海报信息!!!");
}
}
private void showPic(string name)
{
this.pictureBox1.ImageLocation = str + "\\" + name;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?