-
GRID表格控件vb原码
GRID表格控件vb原码-GRID forms controls vb source
- 2022-06-11 22:53:45下载
- 积分:1
-
修改WIN系统的恶意网站代码 希望对你们有用
修改WIN系统的恶意网站代码 希望对你们有用-amend the code hope malicious Web site useful to you
- 2022-04-09 13:05:15下载
- 积分:1
-
VC6.0实现龙格库塔算法
这个是用VC6.0 来实现龙格库塔算法的源代码。欢迎大家下载、试用。谢谢大家的支持!希望能有帮助!
- 2022-08-20 21:59:39下载
- 积分:1
-
基于c#的时钟
资源描述本源程序是基于C#的时钟设计,能为初学者提供参考价值,为初学者提供基本的编写代码思路,
namespace Clock
{
public partial class MainForm : Form
{
private PointF center;
private float r;
private Pen hourPen;
private Pen minutePen;
private Pen secondPen;
private Thread timeThread;
public MainForm()
{
InitializeComponent();
ShowInTaskbar = false;//不在任务栏中显示
SetStyle(ControlStyles.DoubleBuffer, true);
SetStyle(ControlStyles.UserPaint,true);
SetStyle(ControlStyles.AllPaintingInWmPaint,true);
center = new PointF(ClientSize.Width/ 2.0f, ClientSize.Height/ 2.0f);
r = Math.Min(ClientSize.Width / 2.0f, ClientSize.Height / 2.0f);
hourPen = new Pen(Color.Black, 2.5f);
minutePen = new Pen(Color.Black, 1.5f);
secondPen = new Pen(Color.Black, 0.5f);
timeThread=new Thread(new ThreadStart(DrawTime));
timeThread.Start();
}
protected override void OnPaint(PaintEventArgs e)
{
Graphics g = e.Graphics;
g.Clear(BackColor);
//g.SmoothingMode =
- 2022-01-26 05:22:52下载
- 积分:1
-
开源代码开发的注册器,是开源代码开发的利器 WinCvsNEW
开源代码开发的注册器,是开源代码开发的利器 WinCvsNEW -open source code development for the registration, open source development is a tool WinCvsNEW
- 2022-02-25 07:55:06下载
- 积分:1
-
cura pytnon 源代码
3D打印机开源代码 cura pytnon 源代码 是Python部分
- 2023-03-07 20:30:04下载
- 积分:1
-
很好的数字显示程序代码,很有用,
很好的数字显示程序代码,很有用,-xianshi chengxu!!!
- 2022-05-24 09:13:23下载
- 积分:1
-
计数器,计算一定时间内的次数统计。
比如孕妇的胎动计数,脉博计数等等...
计数器,计算一定时间内的次数统计。
比如孕妇的胎动计数,脉博计数等等
-Timer or Counter, statistics frequences in a period
- 2023-08-06 05:05:04下载
- 积分:1
-
这是一个很好的在vc中外设编程的例子,具有很强的通用性,很值得一看啊...
这是一个很好的在vc中外设编程的例子,具有很强的通用性,很值得一看啊-This is a very good peripherals in China vc programming examples, and has a strong universal, it is worth looking ah
- 2022-07-07 16:59:50下载
- 积分:1
-
STM32上实现CAN通信
基于ucgui3.90 建立了点选框,可以选择8档CAN通信速率,建立一个文本编辑框作 为接收CAN通信报文,建立了5个按钮,4个按钮作为测试报文数据发送,1个按钮作 为清除接收文本区。该例程需要一对V3来测试,通过用双绞线连接双方的XS4 (CANH端一定和CANH端连接,CANL端一定和CANL端连接),在界面上操作发送按钮, 发送测试数据到对端的V3设备上,对端的V3显示出接收到的报文。
- 2022-08-21 09:06:18下载
- 积分:1