-
浏览搜索文件
浏览搜索文件-View Document Search
- 2022-02-24 23:14:25下载
- 积分:1
-
一个 XP 界面类库(更新)
一个 XP 界面类库(更新)-an XP interface class library (update)
- 2023-08-27 18:05:03下载
- 积分:1
-
这是一个风险投资。网编译的程序,它显示有2种形式…
这是一个在VC++.net中编译的程序,它有两种显示格式:数字式和钟表式-This is one of the VC. Net compiled procedures, it shows that there are two formats : digital watches and clocks-
- 2022-06-28 19:03:08下载
- 积分:1
-
This procedure has the main toolbar of the call, which has strong significance i...
本程序主要实现了工具栏的停靠,具有很强的实际应用意义。-This procedure has the main toolbar of the call, which has strong significance in practical applications.
- 2022-02-06 08:21:19下载
- 积分:1
-
demonstrated how to make Office the same as the menu, Cool!
演示了如何做出像Office一样的菜单,Cool!-demonstrated how to make Office the same as the menu, Cool!
- 2022-07-20 10:48:20下载
- 积分:1
-
鼠标动画,让鼠标具有动画效果,比如让鼠标上显示其他图标,
鼠标动画,让鼠标具有动画效果,比如让鼠标上显示其他图标,-Mouse animation, mouse animation effects, such as the mouse so that other icon,
- 2023-01-24 01:20:04下载
- 积分:1
-
s3c6410的数据表,英语
s3c6410的datasheet,英文版-s3c6410 the datasheet, English
- 2022-01-24 09:21:00下载
- 积分:1
-
基于qt的串口调试助手
应用背景串口调试助手,图形界面的开发关键技术利用qt编写的串口调试小助手,实现了 232通信,发送接收都没问题
- 2022-02-05 20:56:02下载
- 积分:1
-
实现windows程序窗体透明效果
实现windows程序窗体透明效果-To achieve transparency in the form ...
- 2022-03-03 21:07:08下载
- 积分: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