漂亮的时钟程序(c#)

闲来无聊,把几年前写的程序翻出来了!start opensouce

source: Clock.rar

转载于:https://www.cnblogs.com/shenqiboy/archive/2012/07/16/2594275.html

比较实用的c#程序,小时钟 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; //download by http://www.codefans.net namespace MyClockApp { public partial class Form1 : Form { public Form1() { InitializeComponent(); } /// <summary> /// 得到当前系统时间,并将其拼接成一个字符串 /// </summary> /// <returns>数字时钟显示的字符串</returns> public string GetTime() { String TimeInString = ""; int hour = DateTime.Now.Hour; int min = DateTime.Now.Minute; int sec = DateTime.Now.Second; //将时,分,秒连成一个字符串 TimeInString = (hour < 10) ? "0" + hour.ToString() : hour.ToString(); TimeInString += ":" + ((min < 10) ? "0" + min.ToString() : min.ToString()); TimeInString += ":" + ((sec < 10) ? "0" + sec.ToString() : sec.ToString()); return TimeInString; } /// <summary> /// 在窗体上画表盘时钟的图形 /// </summary> /// <param name="h"></param> /// <param name="m"></param> /// <param name="s"></param> private void MyDrawClock(int h, int m, int s) { Graphics g = this.CreateGraphics(); Rectangle rect = this.ClientRectangle; g.Clear(Color.White); Pen myPen = new Pen(Color.Black, 1); g.DrawEllipse(myPen, this.ClientRectangle.Width / 2 - 75, this.ClientRectangle.Height / 2-75, 150, 150);//画表盘 Point centerPoint = new Point(this.ClientRectangle.Width / 2, this.ClientRectangle.Height / 2);//表的中心点 //计算出秒针,时针,分针的另外一个商点 Point secPoint = new Point((int)(centerPoint.X + (Math.Sin(s * Math.PI / 30) * 50)), (int)(centerPoint.Y - (Math.Cos(s * Math.PI / 30) * 50))); Point minPoint = new Point((int)(centerPoint.X + (Math.Sin(m * Math.PI / 30) * 40)), (int)(centerPoint.Y - (Math.Cos(m * Math.PI / 30) * 40))); Point hourPoint = new Point((int)(centerPoint.X + (Math.Sin(h * Math.PI / 6) * 30) - m * Math.PI / 360), (int)(centerPoint.Y - (Math.Cos(h * Math.PI / 6) * 30) - m * Math.PI / 360)); //以不同颜色和宽度绘制表针 myPen = new Pen(Color.Red, 1); g.DrawLine(myPen, centerPoint, secPoint); myPen = new Pen(Color.Green, 2); g.DrawLine(myPen, centerPoint, minPoint); myPen = new Pen(Color.Orange, 4); g.DrawLine(myPen, centerPoint, hourPoint); } /// <summary> /// 定时刷新显示时间 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void timer1_Tick(object sender, EventArgs e) { int h = DateTime.Now.Hour; int s = DateTime.Now.Second; int m = DateTime.Now.Minute; MyDrawClock(h, m, s); toolStripStatusLabel1.Text = string.Format("{0}:{1}:{2}", h, m, s); lblTime.Text = GetTime(); } /// <summary> /// 若无此方法,时钟也能显示,但要等窗体显示几秒以后表盘才会显示。有了此方法窗体和表盘同时显示 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void Form1_Paint(object sender, PaintEventArgs e) { int h = DateTime.Now.Hour; int s = DateTime.Now.Second; int m = DateTime.Now.Minute; MyDrawClock(h, m, s); toolStripStatusLabel1.Text = string.Format("{0}:{1}:{2}", h, m, s); lblTime.Text = GetTime(); } } }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值