-
C# 根据文件名提取文件类型图标
C# 根据文件名提取文件类型图标,设定好文件目录后,本例中是读取C:Windows下的所有文件,并根据文件类型自动显示图标,如测试图所示,将文件类型的图标添加到listView中,下面是具体的实现代码:
this.imageList1.Images.Clear();
this.listView1.Items.Clear();
string MyFolder = @"C:Windows";
DirectoryInfo MyDir = new DirectoryInfo(MyFolder);
ListViewItem MyItem;
this.listView1.BeginUpdate();
foreach (FileInfo MyFile in MyDir.GetFiles())
{
Icon MyIcon = SystemIcons.WinLogo;
MyItem = new ListViewItem(MyFile.Name, 1);
MyIcon = Icon.ExtractAssociatedIcon(MyFile.FullName);
if (!this.imageList1.Images.ContainsKey(MyFile.Extension))
{
MyIcon =Icon.ExtractAssociatedIcon(MyFile.FullName);
this.imageList1.Images.Add(MyFile.Extension, MyIcon);
}
MyItem.ImageKey = MyFile.Extension;
this.listView1.Items.Add(MyItem);
}
- 2023-07-30 19:25:04下载
- 积分:1
-
SimuroSot Large League 11vs11
说明: SimuroSot Large League (11vs11)
FIRA WorldCup
- 2019-04-29 13:40:56下载
- 积分:1
-
image-compression-coding
关于图像压缩编码的matlab的实现程序,静态图像压缩标准(About image compression coding matlab realization process, still image compression standard)
- 2013-11-28 19:10:46下载
- 积分:1
-
Microsoft-WordPad
original full source code for microsoft wordpad!!!
- 2011-11-13 03:01:50下载
- 积分:1
-
livepanoConverterVideo
基于opengl和glsl的鱼眼全景图,将鱼眼图片,通过GLSL编写的shader贴到球上,让人眼观看的时候产生鱼眼效果。(-Based on OpenGL and glsl fisheye panorama, fish eye picture, written in glsl shader attached to the ball, let the human eye viewing when the fisheye effect.)
- 2017-05-03 17:56:31下载
- 积分:1
-
modu_classify
以前常有的调制识别程序大多是基于MATLAB的,本程序是基于C语言的实用程序,可以识别AM、FM、DSB、LSB、USB、CW、Noise等模拟调制信号的调制类型,是在实际工程中正在应用的实用程序!(Previous common modulation identification procedures are mostly based on MATLAB, and this program is based on the C language utility can identify the AM, FM, DSB, LSB, USB, CW, Noise and other analog modulation signal modulation type is the actual project utilities are being applied!)
- 2009-09-26 19:05:48下载
- 积分:1
-
ISO_IEC_14496-10_2004
MPEG第十部分AVC,是学习H.264视频编解码的必备文档,非常重要。(MPEG4 part10 Advanced Video Coding,It s very useful to learn video dec&enc.)
- 2010-07-05 14:58:34下载
- 积分:1
-
c035
doccument for engineer of electronics
- 2014-12-09 11:54:25下载
- 积分:1
-
DIA2Dump
微软PDB文件的接口使用示例,根据命令行,读取PDB文件中的所有内容。(PDB file interface uses Microsoft' s example.)
- 2020-11-30 00:19:27下载
- 积分:1
-
bt_control
bluetooth control,
can control bluetooth for hci mode
- 2005-08-17 01:30:31下载
- 积分:1