-
LabVIEW开发的串口
基于LabVIEW自己制作的串口调试助手
- 2022-02-15 05:24:18下载
- 积分:1
-
编写vc程序很有用的,可以编写出漂亮的vc界面
编写vc程序很有用的,可以编写出漂亮的vc界面-prepared vc procedures useful, can prepare beautiful vc interface
- 2022-01-31 05:36:59下载
- 积分: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
-
C#实现的HOOK鼠标和键盘源码
全局的Hook,可以获取MouseMove,MouseClick,MouseDown Up,DoubClick. 滚轮,Press,键盘的KeyPress,keyDown,KeyUp
- 2023-02-14 18:25:04下载
- 积分:1
-
数据挖掘_ KNN
&k近邻算法(k-NN)是一种非参数算法
- 2022-05-20 10:57:33下载
- 积分:1
-
meteor screensaver meteor screensaver hope to be able to help you
流星屏保流星屏保希望能对你有所帮助
- 2023-06-15 18:05:03下载
- 积分:1
-
基于智能手机实现的权重
基于wince的smartphone上二级列表的实现-smartphone based on the weights of the realization of two lists
- 2022-02-16 04:22:39下载
- 积分:1
-
一个控制托盘图标位置的例子
一个控制托盘图标位置的例子--An example of controling the ico position of tray
- 2022-02-05 02:26:36下载
- 积分:1
-
推荐一款Vista界面模仿窗体的源码示例,界面做的是挺漂亮的,可以在WIN2K下运行...
推荐一款Vista界面模仿窗体的源码示例,界面做的是挺漂亮的,可以在WIN2K下运行-Recommend a Vista interface mimic the form of source code examples, make the interface is pretty and can be run in WIN2K
- 2022-01-28 20:41:52下载
- 积分:1
-
各个文件夹以树状的结构来显示文件信息
各个文件夹以树状的结构来显示文件信息-various folders in a tree structure of the document to show information
- 2022-01-26 05:00:43下载
- 积分:1