-
一套MFC之外的界面扩展库,可以实现类似Office2003等高级界面,内有例子程序,可以参看...
一套MFC之外的界面扩展库,可以实现类似Office2003等高级界面,内有例子程序,可以参看-A set of MFC extensions outside interface, you can achieve a similar high-level interface, such as Office2003, there are examples of the procedure, you can see
- 2022-03-06 07:17:53下载
- 积分:1
-
基于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
-
Photo browser, through mouse to complete the image to enlarge, reduce, mobile fe...
图片浏览器,可通过鼠标来完成图片放大,缩小,移动等功能-Photo browser, through mouse to complete the image to enlarge, reduce, mobile features
- 2022-02-04 22:32:29下载
- 积分:1
-
VC Outlook interface done
VC Outlook界面完成
- 2022-07-05 04:36:04下载
- 积分:1
-
简单的计算器软件,采用vc6.0开发,希望对您有用。
简单的计算器软件,采用vc6.0开发,希望对您有用。-A simple calculator software, developed using vc6.
- 2022-02-06 21:13:49下载
- 积分:1
-
use jdom operation xml data, generate containing the applet Jtree
使用jdom操作xml数据,生成含Jtree的applet-use jdom operation xml data, generate containing the applet Jtree
- 2022-09-05 17:40:02下载
- 积分: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
-
针对控件ACRptEngineX.ocx演示例子 各种报表格式都有详细的代码
针对控件ACRptEngineX.ocx演示例子 各种报表格式都有详细的代码-ACRptEngineX.ocx demo for examples of a variety of control statements are detailed code format
- 2022-02-03 21:04:02下载
- 积分:1
-
自画标尺的C#代码
自画标尺的C#代码-self-portraits benchmark C# code
- 2023-03-28 14:05:03下载
- 积分:1
-
QRCODE二维码
QRCODE二维码,一个二维条码delphi vcl控件,个人用了还可以,希望对大家有用处
- 2022-01-21 19:11:17下载
- 积分:1