-
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
-
vs+opencv+qt的GUI打开摄像头及处理函数
vs+opencv+qt的GUI打开摄像头及处理函数,在本代码中,利用三个按钮,实现开始,处理和结束功能,在处理上现在只是灰度和canny处理,可根据自己需求补全
- 2022-10-24 13:35:04下载
- 积分:1
-
虚拟的示波器程序请提出宝贵建议。初学者
虚拟的示波器程序请提出宝贵建议。初学者-virtual oscilloscope procedures please valuable suggestions. Beginners Ha ha!
- 2022-07-04 08:46:41下载
- 积分:1
-
无边框窗体 + 外发光边框(半透明)
利用GDI+实现的无边框窗体 + 外发光边框(半透明)。
- 2022-01-24 13:23:21下载
- 积分:1
-
动画演示,动画手机,随机运动,跟随图标运动
动画演示,动画手机,随机运动,跟随图标运动-animation presentation, animation phones, random movement, movement to follow icon
- 2023-06-27 21:35:03下载
- 积分: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
-
一些小的QT
A number of small Qt-programms for Qt-beginners.
- 2022-05-20 05:10:37下载
- 积分:1
-
in32Adapter工程是在Win32平台上的适配器,实现与操作系统相关的接口
应用背景Win32Adapter工程是在Win32平台上的适配器,实现与操作系统相关的接口,比如:画图相关的GC,和OS相关的调用,比如File,Thread等。MobileDemo_C工程是MobielDemo工程的C语言版本,该工程是由C++ToC编译器(作者的另一个开源软件,近期将发布,请关注我的微博关键技术in32Adapter工程是在Win32平台上的适配器,实现与操作系统相关的接口
- 2023-06-20 04:00:05下载
- 积分:1
-
Qt编写时钟界面
用qt编写的简单的时钟界面,通过实现paintEvent函数来绘制
- 2022-08-25 16:59:37下载
- 积分:1
-
pb11 处理excel图表
利用pb11.05 创建excel的图表,可以通过此方法 创建excel的各种图表,利用pb11.05 创建excel的图表,可以通过此方法 创建excel的各种图表
- 2022-03-01 07:07:58下载
- 积分:1