-
完全利用delphi开发的,不用第三方控件实现msn消息提示框效果...
完全利用delphi开发的,不用第三方控件实现msn消息提示框效果-full use of the development, not third-party controls to achieve msn news boxes effect
- 2022-04-18 18:36:35下载
- 积分:1
-
css样式表,css样式代码,常见的css样式
css样式表,css样式代码,常见的css样式-css code,best css style,
- 2023-06-23 19:30:04下载
- 积分:1
-
good system, vc programming interface to achieve control of the use of tree
很好的系统,vc++ 界面编程,实现树型控件的使用-good system, vc programming interface to achieve control of the use of tree
- 2022-02-02 13:44:37下载
- 积分:1
-
Delphi 7.0 屏幕放大镜. Delphi 7.0 屏幕放大镜.
Delphi 7.0 屏幕放大镜. Delphi 7.0 屏幕放大镜.-Delphi 7.0 screen magnifier. Delphi 7.0 screen magnifier.
- 2022-07-15 03:47:07下载
- 积分:1
-
VC6局域网远程电脑控制源码
分为截屏发送端,截屏接受端,截屏接收端测试软件三个软件,软件每秒可传输的图像次数最多为5次,如果电脑性能较好,分辨率较低传输次数,即刷新率可有部分提高,截屏发送端软件启动后开启一个组播数据线程等待截屏接收端通过组播数据发送IP地址,然后建立UDP单播网络发送图像数据,图像数据进行分包发送,截屏接收端软件通过测试软件输入刷新率和IP地址启动。截屏测试软件和截屏接收端通过内存共享方式共享数据。
- 2022-05-24 04:22:46下载
- 积分: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
-
XP风格的TAB
XP风格的TAB-XP style of the TAB
- 2022-07-15 15:19:02下载
- 积分:1
-
类似VC的界面框架程序
类似VC的界面框架程序-similar VC interface framework procedures
- 2022-07-03 03:07:32下载
- 积分:1
-
在对话框上添加分割条,调整控件位置。
在对话框上添加分割条,调整控件位置。-adding segmentation of position adjustment controls.
- 2023-05-23 13:30:02下载
- 积分:1
-
无边框的窗体,并可以拖动和最大最小化.
无边框的窗体,并可以拖动和最大最小化.-no frame of the window, and can drag and the largest minimum.
- 2022-01-26 16:02:38下载
- 积分:1