-
基于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
-
RibbonSource
Ribbon是一个Windows(Windows Vista 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-04-21 05:40:31下载
- 积分:1
-
类似VC界面的设计,用了coolbar控件,界面设计很有用的
类似VC界面的设计,用了coolbar控件,界面设计很有用的-similar interface design, the coolbar control, interface design very useful
- 2022-03-09 09:43:06下载
- 积分:1
-
五子棋游戏
基于LabVIEW的五子棋游戏基于非常良好的人机界面,对于初学者来说是一个非常不错的人机界面参考。本程序实现了人机对弈和双人对弈的功能
- 2022-03-22 19:31:52下载
- 积分:1
-
在C语言中使用汇编语言设计边框范例
在C语言中使用汇编语言设计边框范例-in the C language used assembly language frame design paradigm
- 2022-04-22 12:48:15下载
- 积分:1
-
achieved in Palm keep pace with PC communications software source code!
在Palm上实现与PC保持同步通信的软件源码!-achieved in Palm keep pace with PC communications software source code!
- 2022-05-21 09:58:35下载
- 积分:1
-
自定义DataGridView行样式及行标题实例
自定义DataGridView行样式及行标题实例-Custom DataGridView row row heading styles and examples of
- 2023-09-05 06:35:03下载
- 积分:1
-
一个漂亮的tooltip类,还包含相应的应用实例
一个漂亮的tooltip类,还包含相应的应用实例-a beautiful (NCBI category also includes the corresponding Application
- 2022-02-03 08:26:56下载
- 积分:1
-
一个可以建立各种异形ToolTip的程序
一个可以建立各种异形ToolTip的程序- May establish each kind of different shape ToolTip the
procedure
- 2023-03-11 12:15:03下载
- 积分:1
-
用VC6.0实现漂亮的自定义多功能提示窗口
用VC6.0实现漂亮的自定义多功能提示窗口-with VC6.0 achieve beautiful custom multifunctional prompt window
- 2022-03-13 08:47:38下载
- 积分:1