-
0-什么
我自己的一个小小的练习罢了! 大家还可以再此的基础上自己开发! 呵呵!solitude献上!(my own practice a little too! You can also here on the basis of its own! Oh! Solitude presented!)
- 2005-06-03 18:42:52下载
- 积分:1
-
Mono
实现单稳触发功能,扩展输入信号为指定时常(a implement of mono,expand the input signal to a given time)
- 2013-12-05 12:45:23下载
- 积分:1
-
S7ReadWrite_8266
说明: codigo fuente para esclavo esp8266 comunicacion con plc de siemens(source code for esp8266 and profinet plc siemens)
- 2020-06-17 04:20:01下载
- 积分:1
-
U8门户开发
说明: 使用C#二次开发的程序很好地和U8产品集成在一起,通过vs.net建立一个项目类型为类库的项目(U8 Portal use C#,UFIDA.U8.Portal.NetProductSample)
- 2020-06-16 23:00:02下载
- 积分:1
-
线框渲染高级效果
文本可以调制线框的颜色和属性,已经加上了提示
实例:
- 2022-03-23 06:59:06下载
- 积分:1
-
OfficeXP
Office XP风格菜单 风格很特别(Office XP style menu )
- 2010-10-27 22:17:42下载
- 积分:1
-
similar to the desktop alarm clock procedures contained in the function, display...
类似于桌面闹钟的程序,包含的功能有,显示当前系统时间、定时提醒,可以提醒多件事、自动关机。保存已经提醒过的事情,备查,保存上一次退出时列在日程里边的但是没有提醒过的事件,再次启动时会调出这些事情。可以更改提示音乐,背景风格。-similar to the desktop alarm clock procedures contained in the function, display the current time system, regularly reminded, can remind more than one thing, automatic shutdown. Reminded preserve things, the record keeping at the last exit out of the inside of the agenda but failed to remind the incidents, will start again transferred out to these things. Music can suggest changes, background style.
- 2022-07-04 20:18:12下载
- 积分:1
-
ESP8266模块官方指导文件
说明: 这个是非常全面的esp8266wifi模块的指导文件(This is a very comprehensive guidance document for the esp8266wifi module.)
- 2019-02-19 22:16:17下载
- 积分:1
-
Vector
基于DSP TMS320LF2407 空间矢量控制法 可控制交流伺服电机(DSP space vector control method)
- 2013-06-04 15:05:39下载
- 积分:1
-
C# 使用Graphics对象在程序运行时创建位图
C# 在程序运行时创建位图,本源码实例主要是学习使用使用Graphics对象创建简单图像的例子,本程序将生成一条曲线图像,参照如下代码:
{//在程序运行时创建位图
int MyWidth=this.pictureBox1.Width;
int MyHeight=this.pictureBox1.Height;
Bitmap MyBitmap = new Bitmap(MyWidth,MyHeight);
Graphics MyGraphics = Graphics.FromImage(MyBitmap);
Pen MyPen = new Pen(Color.Black, 3);
Point[] MyPoints = { new Point(50, 100), new Point(100, 10), new Point(150, 290), new Point(200, 100), new Point(250, 10), new Point(300, 290), new Point(350, 100) };
MyGraphics.Clear(Color.White);
MyGraphics.DrawBeziers(MyPen, MyPoints);
pictureBox1.Image = MyBitmap;
- 2022-03-25 22:38:21下载
- 积分:1