-
基于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
-
My Bi
我的毕设 利用Excel2007中VBA技术开发的求解物流配送中的车辆路径问题。适用于小规模的路径求解。-My Bi-based technology development using VBA in Excel2007 solving logistics and distribution in the vehicle routing problem. The path for small-scale solution.
- 2022-02-01 11:54:37下载
- 积分:1
-
玩过红警的人不少,但是想自己编写他的人不多,我这个程序实现了基本的一个功能,用C#写的,花了半年时间....
玩过红警的人不少,但是想自己编写他的人不多,我这个程序实现了基本的一个功能,用C#写的,花了半年时间.-红警played a lot of people, but he would like to have written not many people, I realized this process as a basic function, using C# to write, and spent half a year.
- 2022-02-05 20:33:53下载
- 积分:1
-
Prison Managment System
我认为这对你的java基础知识非常有用,可以提高你的编程能力。这是一个非常好的主意,可以让你提高你的编程技能。如果你想发展你自己的活动,你可以得到监狱管理系统或任何其他系统的基本想法,这对你的学术学校项目非常有用对于你的个人项目设计来说,这对你来说是一个很好的机会,通过et beans ide.7.4的java编程语言为你创建这个gui应用程序可以让你自己的知识得到增长。这是一个很好的练习,为你提高好的技能。谢谢各位身体祝你好运
- 2023-01-07 10:20:03下载
- 积分:1
-
This is a SQL interface editorial clone of the source, can handle inquiries.
这是一个SQL Serer界面编辑的源程序,能处理查询问题。-This is a SQL interface editorial clone of the source, can handle inquiries.
- 2022-01-22 04:36:17下载
- 积分:1
-
一个好的论坛源程序!
a good froum source program!-a good source program!
- 2022-03-21 00:40:16下载
- 积分:1
-
QT程度实例,实现接收数字和字符串的QEditLine控件及其他控件的slot...
QT程度实例,实现接收数字和字符串的QEditLine控件及其他控件的slot-The degree of QT example, to receive digital and realize QEditLine string controls and other control slot
- 2022-09-29 15:30:03下载
- 积分:1
-
是一个关于VB的城市人口的程序,希望对学 VB的同学有所帮助
是一个关于VB的城市人口的程序,希望对学 VB的同学有所帮助-VB is one of the procedures of the urban population, and I hope to learn VB help students
- 2022-04-10 10:29:35下载
- 积分:1
-
The personnel management system
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-08-09 18:57:06下载
- 积分:1
-
实时教学评价体统界面
资源描述
本项目是一个基于Android平台的应用软件,利用了社会机会网络搜集信息,再对这些信息进行统计分析,最后返还到教师端,进行响应。分为学生端和教师端,主要目的是实现教学互动。
- 2023-07-16 03:30:04下载
- 积分:1