-
基于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
-
一个使用wtl实现的多窗口的分割,在MFC中很难实现
一个使用wtl实现的多窗口的分割,在MFC中很难实现--The partition of multi-windows by using wtl,which is impossible in MFC
- 2022-02-14 00:46:24下载
- 积分:1
-
Development of an interface with the SWT Designer program can copy some files un...
一个用SWT Designer开发的界面程序 可以拷贝指定目录下的某些文件到其他地方,实现了文件浏览器的功能,可以对项目进行排序,最后按XML格式生成项目说明,同时生成TXT的目录结构
这是我在公司为公司拷贝文件方便做的一个小工具 并不一定对大家都适合 -Development of an interface with the SWT Designer program can copy some files under the specified directory to other places to achieve the file browser functions, you can sort the project, the final project description is generated by XML format, while creating the directory structure that TXT I copied the file in the company to facilitate the company to do a little tool does not necessarily fit all
- 2022-02-13 09:38:37下载
- 积分:1
-
图像识别程序,数字图像处理,源代码及资料等等,找到的,很不错...
图像识别程序,数字图像处理,源代码及资料等等,找到的,很不错-image identification procedures, digital image processing, source code and information, and so on, to find, and very good
- 2022-10-10 13:50:02下载
- 积分:1
-
11个震撼的javascript网页效果
里面包含11个震撼的javascript网页效果:1,2,3,4,5,JavaScript图片特效,Js拖动特效一串水晶(很强大),Tank网页版,
很有意思的图片分裂复制效果,很炫的Javascript立体图片展示,漂亮的js时钟效果。
- 2023-05-24 22:10:04下载
- 积分:1
-
ANAESTHESIA FEEDER FOR PATIENT WITH SALINE STATUS
- 2022-03-16 20:30:00下载
- 积分:1
-
CHtmlView 网页操作
简单小程序,使用CHtmlView类浏览网页,同时解决了新网页在同一个view里打开。同时也尝试修改网页元素值
- 2022-05-22 22:49:54下载
- 积分:1
-
本代码提供了一个各种图象的滑块
本代码提供了一个各种图象的滑块-the code for a variety of images slider
- 2023-05-30 16:15:03下载
- 积分:1
-
good system, vc programming interface to achieve control of the use of tree
很好的系统,vc++ 界面编程,实现树型控件的使用-good system, vc programming interface to achieve control of the use of tree
- 2022-02-02 13:44:37下载
- 积分:1
-
在IE工具栏中加入快捷图标
在IE工具栏中加入快捷图标--Add short cut icon on IE s toolbar.
- 2022-02-20 06:39:52下载
- 积分:1