-
Snakegamecode.rar
使用ucosii操作系统对arm7微处理器进行贪吃蛇游戏开发。(Ucosii operating system used on the ARM7 microprocessor Snake game development.)
- 2009-01-06 21:50:46下载
- 积分:1
-
读写EXECL表内容
一个有借鉴意义的EXCEL格式读写操作的实例。(A reference to the EXCEL format reading and writing operations examples.)
- 2017-08-17 23:05:17下载
- 积分:1
-
MFC-stydy
MFC学习资料,mfc窗口创建程序,列表控件树控件使用程序,dll,com相关编程,绘图,序列化等程序,并附有说明(MFC learning materials, MFC window creation program, list controls the tree control procedures, DLL, COM programming, drawing, serialization and other procedures, together with a detailed description)
- 2013-09-28 21:07:57下载
- 积分:1
-
FloatWnd
VC 实现类似迅雷的悬浮窗,精选学习源码,很好的参考资料。(VC suspension window similar to the thunder, select learning source code, a good reference.)
- 2013-12-25 11:02:10下载
- 积分:1
-
1
说明: 霍夫曼编码解码,实用程序,源程序,只用好用,通用。(Huffman encoding and decoding, utilities, source code, using only easy to use, universal.)
- 2013-06-20 14:57:58下载
- 积分:1
-
stm32f1_std
IAR 工程,使用标准库,减少建立工程实践,IAR版本8.xxx(IAR Project use std periph)
- 2020-06-16 20:00:01下载
- 积分:1
-
UsbFlashDrive
说明: show usb flash drive on window
- 2020-06-24 15:00:02下载
- 积分:1
-
c++ 物资管理系统源码(含数据库)
c++ 物资管理系统源码(含数据库)
- 2019-10-02下载
- 积分:1
-
C# 按照扩展名分组文件
C# 按照扩展名分组文件,按照文件类型的不同,对文件进行归类显示,分类清淅便于查看,主要是使用MyFile中的对象和方法实现,核心的功能代码如下:
private void ShowGroupFile(IEnumerable> MyQueryGroup)
{
this.listBox1.Items.Clear();
foreach (var MyFileGroup in MyQueryGroup)
{
this.listBox1.Items.Add("包含" + MyFileGroup.Key + "扩展名的文件如下:");
foreach (var MyFileInfo in MyFileGroup)
{
this.listBox1.Items.Add(MyFileInfo.Name);
}
this.listBox1.Items.Add("");
}
}
static IEnumerable GetFiles(string MyDir)
{
if (!System.IO.Directory.Exists(MyDir))
throw new System.IO.DirectoryNotFoundException();
string[] MyFileNames = null;
List MyFiles = new List();
//查找指定目录下的所有子目录中的所有文件
//MyFileNames = System.IO.Directory.GetFiles(MyDir, "*.*", System.IO.SearchOption.AllDirectories);
MyFileNames = System.IO.Directory.GetFiles(MyDir);
foreach (string MyName in MyFileNames)
{
MyFiles.Add(new System.IO.FileInfo(MyName));
}
return MyFiles;
}
- 2022-12-28 08:15:04下载
- 积分:1
-
MATLABCSharp
非常好的C#&matlab电子书,值得拥有(Very nice e-book <C# and Matlab>, you should get it)
- 2014-01-08 21:31:34下载
- 积分:1