-
Diary
AppWizard has created this Diary application for you. This application
not only demonstrates the basics of using the Microsoft Foundation classes
but is also a starting point for writing your application.
(AppWizard has created this Diary application for you. This applicationnot only demonstrates the basics of using the Microsoft Foundation classesbut is also a starting point for writing your application.)
- 2008-12-07 12:21:47下载
- 积分:1
-
软件模拟13路PWM波,可改变占空比和频率
软件模拟13路PWM波,通过485通信给出占空比,频率等参数,占空比和频率支持小数位,用DMA实现485通讯,中断实现模拟PWM输出
- 2022-02-01 00:18:11下载
- 积分:1
-
a
说明: 输入一个16位的二进制数取出奇偶数组成新的数(Enter a binary number 16 out of a few to form a new parity of the number of)
- 2008-12-28 16:12:05下载
- 积分:1
-
SJYX
说明: 在控制台界面实现游戏控制,属于射击游戏
运行时 界面要足够大 不要全屏 正常显示即可运行(In the console interface to control the game, shooting game is to run-time interface is large enough not to run full-screen display)
- 2008-09-20 21:52:14下载
- 积分:1
-
randomforest-master
说明: randomforest-maste
深度学历领域的随机森林算法(Random forest-maste
Random Forest Algorithms for Deep Education)
- 2020-06-17 13:00:02下载
- 积分:1
-
ExObjLoader
实现对三维模型.obj类型文件的导入,并通过OPENGL进行绘制显示。(Realization of three-dimensional model. Obj file type to import, and to draw OPENGL display.)
- 2009-07-12 08:34:16下载
- 积分:1
-
tests
Development source code
- 2012-01-28 12:05:41下载
- 积分:1
-
C#反编译神器(可调试)
C#反编译神器(可调试),我经常用,查看别人的实现思路。
- 2022-10-24 02:30:04下载
- 积分:1
-
xtremetoolkitPro15.3.1
大名鼎鼎的界面库Toolkit.Pro.v15.3.1完整源代码(SHELL PROGRAMMING Toolkit.Pro.v15.3.1)
- 2018-08-04 20:08:21下载
- 积分:1
-
C# timer应用范例:左右飘动的窗体
C# 创建一个飘动的窗体,左右飘动,主要是对Timer的控制,基本的原理是:窗体的左上角横坐标随着timer1不断加一,窗体的左上角横坐标随着timer2不断减一,这个过程由Timer控制,因此你要写出一个循环,来控制Timer不停变化,比如timer不断加一:
Point p = new Point(this.DesktopLocation.X + 1, this.DesktopLocation.Y);
this.DesktopLocation = p;
if (p.X == 630)
{
timer1.Enabled = false;
timer2.Enabled = true;
}
以上代码的执行我们放入到private void timer1_Tick私有函数中,运行程序后即运行该函数。
- 2023-03-26 23:00:04下载
- 积分:1