-
基于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
-
以时钟显示界面,很漂亮的界面,可以编译运行,好资料
以时钟显示界面,很漂亮的界面,可以编译运行,好资料-the display with timer
- 2022-06-14 17:43:18下载
- 积分:1
-
主成分分析
挺好的,以数据位基础,一些主要的代码都在里面,通过不同的图表表现。主成分分析matlab_GUI程序,得到主成分系数矩阵和主成分得分系数-Matlab_GUI principal component analysis procedure, the coefficient matrix of principal component scores and principal component factor
- 2022-01-28 13:19:40下载
- 积分:1
-
PCSC Delphi sample code
PCSC Delphi sample code源码, 帮助你连线到smart card, 并取得需要的资讯
程式码精简易懂,适合入门的朋友使用
另外也希望可以跟大家交流更多的源码
- 2023-03-05 00:15:04下载
- 积分:1
-
days edge medicine outstanding business system for the registration module sourc...
天力卓越医药商务系统的注册模块原代码, 程序编写紧凑,比较使用,推荐!-days edge medicine outstanding business system for the registration module source code, programmers compact, more use and recommend!
- 2022-02-12 22:39:00下载
- 积分:1
-
VC 画曲线控件,方便易用,美观
VC 画曲线控件,方便易用,美观...
VC 画曲线控件,方便易用,美观
VC 画曲线控件,方便易用,美观-VC painting curve control, user-friendly, visual art VC curve control, user-friendly, visual
- 2022-01-25 19:34:52下载
- 积分:1
-
用VC。6.0编写的文件统计器,其中演示了很多控件的用法
用VC。6.0编写的文件统计器,其中演示了很多控件的用法-VC. 6.0 preparation for the document statistics, which demonstrated a lot of the usage control
- 2023-05-09 23:50:03下载
- 积分:1
-
超市收银系统 QT语言
应用背景对于QT的初学者来说是一个不错的选择。超市收银系统涵盖有界面的开发,数据库的开发,QT的各组件之间的应用。更能增加初学者对Qt语言的了解。关键技术数据库的应用,打开,创建,删除,qt的基本组件(按钮,文本框,加载图片,下拉框,布局管理等的应用)
- 2022-02-21 09:47:41下载
- 积分:1
-
应用程序的操作命令
资源描述
•菜单提供一种方便的命令分组的方法,并使用户更加容易访问这些命令,菜单将应用程序的操作命令以菜单的形式提供给用户。菜单从形式上分为下拉式菜单及弹出式菜单两种。
- 2022-11-18 21:00:04下载
- 积分:1
-
library management system, including source code, is conducive to beginners refe...
图书馆管理系统,其中包括了源程序代码,有利于初学者的参考,可能功能还不够完善请多多指教-library management system, including source code, is conducive to beginners reference function may not sound great weekend
- 2023-02-17 19:45:03下载
- 积分:1