-
EXCEL
有关生成和读取Excel文件的操作类,你一定用得着哦(On the formation and operation of reading Excel file type, you must need it, oh)
- 2008-07-06 21:57:05下载
- 积分:1
-
WinForm多皮肤源码实例
WinForm多皮肤源码实例,可以进行随意选择切换,获取自己喜欢的winform皮肤样式。可下载后直接引用到开发程序中,方便重复使用,操作简单,可下载后直接引用到开发程序中,方便重复使用,操作简单。。
- 2022-03-25 05:34:48下载
- 积分:1
-
RgnGuide_src
这个源代码是用来实现图形之间的基本运算的,包括求交集、并集、差集等等。而且图形的形状也可以任意选择,可以是圆、线段、点、多边形等等。(the source code is used to achieve the basic graphics operations, including for intersection and set difference, and so on. The shape and graphics can choose freely, it can be won, segment, points, polygons, and so on.)
- 2020-12-12 15:49:18下载
- 积分:1
-
objLoadingWIN32OpenGL2
OBJ 读取器。 内含模板和关键每个文件(obj loader, include template)
- 2021-04-28 16:58:44下载
- 积分:1
-
rUsb
基于cyapi的上位机读取usb数据,编写平台VS2015(Reading USB data by host computer based on cyapi)
- 2020-06-22 16:20:02下载
- 积分:1
-
netbox-master
NetBox源码。一个使用脚本语言进行应用软件开发与发布的开发环境和运行平台。(Source of NetBox. A development environment and running platform for application software development and publishing using script language.)
- 2019-06-18 09:33:59下载
- 积分:1
-
threhold-dealt
关于阈值处理的一部分参考文献,对于图像的二值化等很有帮助,是经过精心选择的参考文件。(References on the part of the processing threshold for image binarization helpful, is carefully selected reference files.)
- 2014-08-25 12:03:43下载
- 积分:1
-
6844143
一个共享软件注册的解决方案的例子,很好很喜欢()
- 2018-06-18 13:12:46下载
- 积分:1
-
64287612487617824
本文件为基于OMNeT_的Leach协议的仿真改进与研究(This document is based on the improvement and simulation of Leach agreement OMNeT_)
- 2014-12-14 16:42:53下载
- 积分:1
-
用C#实现启动欢迎画面
用C#制作软件启动时的欢迎界面,开始画面,在软件被打开时最先显示的一个窗口效果,在本例中是直接调用一张图片来显示,但是具体的实现,比如图片显示的位置 、显示的时间长短等,用到的定时器,需要控制好,本实例代码就是向大家展示如何进行这些控制,部分代码为:
private void Form1_Load(object sender, EventArgs e)
{//启动窗体
Form2 MySplashForm = new Form2();
MySplashForm.ShowDialog();
}
private void Form2_Load(object sender, EventArgs e)
{//设置启动窗体
this.FormBorderStyle = FormBorderStyle.None;
this.BackgroundImage = Image.FromFile("test.jpg");
this.timer1.Start();
this.timer1.Interval = 10000;
}
private void timer1_Tick(object sender, EventArgs e)
{//关闭启动窗体
this.Close();
}
定时器控制:
private void Form2_FormClosed(object sender, FormClosedEventArgs e)
{//关闭定时器
this.timer1.Stop();
}
- 2022-01-22 15:57:51下载
- 积分:1