用c#如何编绘时钟
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用c#如何编绘时钟相关的知识,希望对你有一定的参考价值。
在VS2005里面编绘一个运转的时钟(显示系统时间),关键不知道如何使用draw方法,最好是告诉我完整的C#程序代码。。。急求。。
谢谢聊~~~~~~
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
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();
参考技术A 桌面上不要任何东西,直接复制如下代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication4
public partial class Form1 : Form
public Form1()
InitializeComponent();
Timer t = new Timer();
private void Form1_Load(object sender, EventArgs e)
t.Enabled = true;
t.Interval = 1000;
t.Tick+=new EventHandler(t_Tick);
t.Start();
string time = "";
private void t_Tick(object sender, EventArgs e)
time = DateTime.Now.Date.ToShortDateString() + "\n" + DateTime.Now.TimeOfDay.ToString();
Graphics gp= this.CreateGraphics();//如果想在其他控件上绘制,吧this改成空间的name
gp.Clear(Color.Gold);
gp.DrawString(time, new Font("幼圆",20), Brushes.SeaGreen, new PointF(20, 20));
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
t.Stop();
如何使用 C# 将 Windows 系统时钟设置为正确的本地时间?
【中文标题】如何使用 C# 将 Windows 系统时钟设置为正确的本地时间?【英文标题】:How do I set the Windows system clock to the correct local time using C#? 【发布时间】:2011-08-30 07:18:48 【问题描述】:【问题讨论】:
如何获得“正确的当地时间”? “正确的当地时间”是什么意思?请解释一下。 【参考方案1】:要解决 SE_SYSTEMTIME_NAME 权限问题,请尝试创建一个计划任务来运行您的应用程序并启用“以最高权限运行”。
【讨论】:
【参考方案2】:.NET 没有为此公开函数,但您可以使用 Win32 API SetSystemTime(在 kernel32.dll 中)方法。要获取 UTC 时间,您应该使用 NTP Protocol Client,然后根据您的区域设置将该时间调整为本地时间。
public struct SYSTEMTIME
public ushort wYear,wMonth,wDayOfWeek,wDay,wHour,wMinute,wSecond,wMilliseconds;
[DllImport("kernel32.dll")]
public extern static uint SetSystemTime(ref SYSTEMTIME lpSystemTime);
SYSTEMTIME systime = new SYSTEMTIME();
systime = ... // Set the UTC time here
SetSystemTime(ref systime);
【讨论】:
错了。这适用于 Windows Mobile 下的 Compact Framework。该问题被标记为“windows-xp”。【参考方案3】:您需要从 Windows API P/Invoke SetLocalTime
function。在 C# 中这样声明:
[DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
internal static extern bool SetLocalTime(ref SYSTEMTIME lpSystemTime);
[StructLayout(LayoutKind.Sequential)]
internal struct SYSTEMTIME
public ushort wYear;
public ushort wMonth;
public ushort wDayOfWeek; // ignored for the SetLocalTime function
public ushort wDay;
public ushort wHour;
public ushort wMinute;
public ushort wSecond;
public ushort wMilliseconds;
要设置时间,您只需使用适当的值初始化SYSTEMTIME
结构的实例,然后调用该函数。示例代码:
SYSTEMTIME time = new SYSTEMTIME();
time.wDay = 1;
time.wMonth = 5;
time.wYear = 2011;
time.wHour = 12;
time.wMinute = 15;
if (!SetLocalTime(ref time))
// The native function call failed, so throw an exception
throw new Win32Exception(Marshal.GetLastWin32Error());
但是,请注意调用进程必须具有适当的权限才能调用此函数。在 Windows Vista 及更高版本中,这意味着您必须请求进程提升。
或者,您可以使用SetSystemTime
function,它允许您以UTC(协调世界时)设置时间。使用相同的SYSTEMTIME
结构,并且以相同的方式调用这两个函数。
【讨论】:
【参考方案4】:这里有几篇关于如何做到这一点的文章,其中包括查询原子钟的正确时间。
http://www.codeproject.com/KB/IP/ntpclient.aspx
http://www.codeproject.com/KB/datetime/SNTPClient.aspx
【讨论】:
以上是关于用c#如何编绘时钟的主要内容,如果未能解决你的问题,请参考以下文章
c#在visual studio开发环境下设计一个闹钟 小界面程序