-
基于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
-
查看类别列表
一个视图中的列表类-view a list of categories
- 2022-03-05 16:47:02下载
- 积分:1
-
This a full featured inventry controll system project
This a full featured inventry controll system project
- 2022-07-21 12:20:40下载
- 积分:1
-
国际流行的界面风格
国际流行的界面风格--圆角窗体-international pop style of interface-- Fillet Form
- 2022-03-23 15:27:10下载
- 积分:1
-
窗体分割条,比较可以,对简单应用者相当适合。
窗体分割条,比较可以,对简单应用者相当适合。-the form of segmentation, can be compared to simple application were very suitable.
- 2022-01-21 19:27:30下载
- 积分:1
-
使用APPface开发VC界面的,这是一个例子,示范APPFace的一种控件...
使用APPface开发VC界面的,这是一个例子,示范APPFace的一种控件-APPface development using VC interface, this is an example of a control model APPFace
- 2023-06-13 07:40:03下载
- 积分:1
-
Jquery源码
jquery源码,如果你有需要的话就可以下哦,希望可以帮助到你,分子jquery源码的话,还是希望先学习好最基本的javascript语法只是,否则直接去分析的话,比较困难
- 2022-03-23 10:09:12下载
- 积分:1
-
一个小店铺的管理与VB
我的妻子现在经营一家小商店和管理变得越来越复杂。我想给她一个系统,可以监测小操作正在执行它的设计有助于那家店的管理。最好用MS Access构建VB与数据库。谢谢。
- 2022-03-04 21:11:43下载
- 积分:1
-
一个关于动态图形的例子,图形有闪烁和变化功能
一个关于动态图形的例子,图形有闪烁和变化功能-on a dynamic graphic example of scintillation and graphics function changes
- 2022-08-13 09:24:28下载
- 积分:1
-
金山类窗口
金山词霸那样的窗口条-Kingsoft kind of window of
- 2022-02-13 12:25:02下载
- 积分:1