-
基于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
-
时间控制小程序,主要用于控制软件的时间管理,可一参考
时间控制小程序,主要用于控制软件的时间管理,可一参考-time control of small procedures, mainly used to control the time management software, a reference to the masses
- 2022-07-14 17:36:52下载
- 积分:1
-
Reference MFC development process of an example of chapter 3, want to help every...
MFC开发程序参考大全的1章的例子3,希望对大家有所帮助-Reference MFC development process of an example of chapter 3, want to help everyone
- 2022-09-08 18:35:06下载
- 积分:1
-
TOOLTIP自定义,简单实用,界面比系统的稍微好一点
TOOLTIP自定义,简单实用,界面比系统的稍微好一点-ToolTip custom, simple and practical than the system interface slightly better
- 2022-03-17 03:41:19下载
- 积分:1
-
This is an audio and video store on a warehouse management system, a program of...
这是一个有关于音像商店的一个仓库管理系统,一个课程小项目-This is an audio and video store on a warehouse management system, a program of small projects
- 2022-02-16 05:44:25下载
- 积分:1
-
一个用VB编写的系统托盘区气泡提示,非常经典,试过了就知道!...
一个用VB编写的系统托盘区气泡提示,非常经典,试过了就知道!-VB prepared using a system tray bubble prompted the district, very classic, tried it out!
- 2022-05-30 13:40:29下载
- 积分:1
-
学生成绩管理系统
这是用c语言实现的学生成绩管理系统,有查询、删除、添加成绩,浏览成绩单,创建成绩单,查找学生,保存、打开成绩单等功能
- 2022-03-13 08:11:48下载
- 积分:1
-
functional presentations : 1. COM,.NET and ASP.NET said the 75 best
功能介绍:1.基于COM、.NET 和ASP.NET 的75种最佳表示层组件:包括网格、图表、工具条、菜单、制表符、树状子目录结构、进度表、日历、编辑器、GUI控件以及更多…2.利用Infragistics的表示层构架可用于继承并创建自定义组件的图形界面跨环境的通用对象模块提供更方便的在线学习 3.支持WindowsXP功能。4.RAD 设计器提升了可视化设计的速度。5.使用NetAdvantage's ASP.NET组件可以在瘦客户端环境中创建胖客户端的应用程序。6.提供ASP.NET组件的服务器端应用程序接口(API)7.应用广泛、直观的对象模块,包括了丰富的事件、方法和属性集合,可进行细化至象素水平的编程8.跨环境的通用对象模块提供更方便的在线学习-functional presentations : 1. COM,.NET and ASP.NET said the 75 best-components include : grids, charts, toolbars, menus, tabs, tree subdirectory structure, schedules, calendars, editors, GUI controls, and more ... 2 . Infragistics said the use of the layer structure can be used to inherit and create a custom graphical interface components of the environment across the Common Object Module provide more convenient online learning 3. WindowsXP support functions. 4.RAD design for improved visual design speed. 5. NetAdvantage"s use ASP.NET components in the thin client environment can be created fat client applications. 6.NET components for the server-side appl
- 2022-02-15 07:31:52下载
- 积分:1
-
动态添加控件,你要什么类型的控件,添加就可以了.
动态添加控件,你要什么类型的控件,添加就可以了.-add, you have to what types of controls, add on it.
- 2022-03-15 08:00:49下载
- 积分:1
-
asp教师档案管理系统
这个是一个asp.net制作的教师档案管理系统
- 2022-10-04 10:50:04下载
- 积分:1