-
delphi绘图工具附带源码
delphi绘图工具附带源码,
可以绘制不同的图像图形,可以保存为独立文件,图形图像可以改变大小.
用到了FlatStyle空间, AAfont空间. 还有ruler控件;
- 2023-05-09 23:15:04下载
- 积分:1
-
GUI类库--ClassXP,该类库是用C++ + sdk写的代码,其结果体现的就是编译程序小巧、运行快速的特点...
GUI类库--ClassXP,该类库是用C++ + sdk写的代码,其结果体现的就是编译程序小巧、运行快速的特点-GUI class libraries-- ClassXP, is the Class C sdk writing code, and the results reflected in the translation program is small, fast running characteristics
- 2022-02-01 19:45:16下载
- 积分: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
-
XPControls控件包。是一个用于DELPHI的界面开发换肤工具包,
XPControls控件包。是一个用于DELPHI的界面开发换肤工具包,-XPControls control packets. Delphi is one for the Eurocargo interface development tool kit
- 2023-06-03 23:55:03下载
- 积分:1
-
一个仿Windows XP的VC源码,可以做出自己的决定,这是描述。
一个仿XP窗口的VC++源码,可以自行修改,内有说明.-a fake windows XP VC source, can make its own decisions, which is described.
- 2022-03-31 08:41:10下载
- 积分:1
-
This example illustrates in detail some of the basic controls in MFC to use
本例详细说明了MFC中要使用的一些基本控件
- 2022-03-24 17:55:41下载
- 积分:1
-
Primitive yards from thinking in java
本原码来自 thinking in java-Primitive yards from thinking in java
- 2023-02-18 17:00:03下载
- 积分:1
-
运用c++builder实现闪屏效果,即程序开始之前那个等待界面
运用c++builder实现闪屏效果,即程序开始之前那个等待界面-use c builder achieve blinking screen effects, that is, before the start of that process for interface
- 2022-01-28 17:09:07下载
- 积分:1
-
利用VC实现 窗体振荡的例程
利用VC实现 窗体振荡的例程-VC Form oscillation routines
- 2023-08-21 13:55:03下载
- 积分:1
-
VC实例初始化界面应用程序大家可以做简单参考
VC实例初始化界面应用程序大家可以做简单参考-VC initialization interface application examples everyone can make a simple reference
- 2023-04-29 13:50:02下载
- 积分:1