-
prepared by the task of editing the column for two small programs
用Delphi编写的对任务栏进行编辑的小程序2-prepared by the task of editing the column for two small programs
- 2022-10-02 11:25:04下载
- 积分:1
-
byte分销模板
资源描述
byet分销的模板
看上去很好看,至少我是这么认为的
喜欢就下载一下
不喜欢也留个名
这个是第一次上传
- 2022-07-04 22:15:20下载
- 积分:1
-
类似VC里的spy++程序使用鼠标指定窗口的控件
类似VC里的spy++程序使用鼠标指定窗口的控件-The control of specifying the window as the spy++ in VC
- 2022-01-23 10:13:33下载
- 积分: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
-
此代码是《Visual C++6.0程序设计从入门到精通》的原代码光盘。...
此代码是《Visual C++6.0程序设计从入门到精通》的原代码光盘。-This code is
- 2022-03-23 17:47:52下载
- 积分:1
-
vb实现数控
这里有vb实现数控插补,直线插补,圆弧插补,逐点插补还有积分插补,界面有清空,开始,下一步,和退出界面.操作简便,
- 2023-02-19 06:50:04下载
- 积分:1
-
类似Vc和Outlook的界面
类似Vc和Outlook的界面,挺有用的。
类似Vc和Outlook的界面
类似Vc和Outlook的界面,挺有用的。-similar Vc and Outlook interface similar Vc and Outlook interface, quite useless.
- 2023-07-21 15:35:02下载
- 积分:1
-
achieve the arbitrary division of the window, using the static segmentation appr...
实现窗口的任意分割,使用静态分割的方法切分窗口,是通过使用CSplitterWnd类来完成的-achieve the arbitrary division of the window, using the static segmentation approach segmentation window, through the use of CSplitterWnd class completed
- 2022-09-16 14:40:03下载
- 积分:1
-
动态创建菜单
基于C++ MFC 创建的程序,可实现动态创建菜单功能,初学者使用案例,
基于C++ MFC 创建的程序,可实现动态创建菜单功能,初学者使用案例,
基于C++ MFC 创建的程序,可实现动态创建菜单功能,初学者使用案例,
- 2022-09-09 12:40:03下载
- 积分:1
-
聊天室用的格式化输出的文本框
聊天室用的格式化输出的文本框-Outputing formated content to text box used in ChatRoom
- 2022-07-28 07:37:54下载
- 积分:1