-
鼠标动画,让鼠标具有动画效果,比如让鼠标上显示其他图标,
鼠标动画,让鼠标具有动画效果,比如让鼠标上显示其他图标,-Mouse animation, mouse animation effects, such as the mouse so that other icon,
- 2023-01-24 01:20:04下载
- 积分:1
-
LED控制卡上位机程序,目前为初步设计,以后逐步完善,部分功能设计值得借鉴...
LED控制卡上位机程序,目前为初步设计,以后逐步完善,部分功能设计值得借鉴-LED control card host computer program, currently the preliminary design
- 2022-10-17 13:10:03下载
- 积分:1
-
similar to the management of resources, with a wide range of splitting the small...
类似于资源管理器的,具有多个切分窗口的小程序,可以播放音视频文件-similar to the management of resources, with a wide range of splitting the small window procedure that can play audio and video files
- 2022-12-02 04:10:03下载
- 积分:1
-
是个目前为止比较完美的图形控件,加到自己的工程里,帮助会不少...
是个目前为止比较完美的图形控件,加到自己的工程里,帮助会不少-is far more perfect graphics controls, added to the project, would help many
- 2022-10-26 02:10:02下载
- 积分:1
-
使用Flash界面,C++程序
Flash4UI 可以让普通的C++应用程序使用flash作为UI,从而使UI开发变的极其轻松。
通过flash的超炫效果,可以使软件提升几个档次。使用Flash制作UI可以一劳永逸,摇身一变可以成为网页应用符合大势所趋,也可以在linux,Mac等PC平台,也可以在很多手机平台上使用。做到可以看Flash的地方就可以用Flash UI。
多年来UI开发一直是程序开发者相当头疼的部分,烦扰复杂的消息传递,凌乱琐碎的图片更换......
Flash4UI给C++应用程序的UI开发带来了革命性的转变,让我们一起翻开这一页历史新篇章......
Flash4UI典型应用:桌面程序界面库,网络flash收集器,桌面宠物等等。-Use Flash as UI in C++ programme
- 2022-02-04 08:38:47下载
- 积分:1
-
这是一个realplayer的源代码
这是一个realplayer的源代码-This is a source REALPLAYER
- 2022-05-23 05:37:01下载
- 积分:1
-
vc灵感编程范例源代码 21 在窗口标题栏上显示文字的两种方法 22 控制窗口最大最小尺寸 23 隐藏或显示桌面图标 24 重新设置桌面 25 闪烁的标题栏 2...
vc灵感编程范例源代码 21 在窗口标题栏上显示文字的两种方法 22 控制窗口最大最小尺寸 23 隐藏或显示桌面图标 24 重新设置桌面 25 闪烁的标题栏 26 旋转字体 27 MyDialog 28 在任务栏上显示图标 29 MySplashWnd 30 PlaySound 31 SoundCardDetect 32 DriveNumber 33 图象旋转 34 将固定大小的位图在窗口平铺 35 打开关闭光驱门 36 使按钮变灰 37 位图按钮 38 改变按钮字体 39 带颜色的静态文本控件 40 MyButton-vc inspiration source code programming examples in 21 Biaodilanshang window display text of the two methods most 22 control window large minimum size of 23 or hidden Show Desktop icon 24 reconfigured desktop 25 flashing title bar font rotation 26 27 MyDialog 28 in the task bar icon displayed on the 29 MySplashWnd 30 PlaySo 32 und 31 SoundCardDetect image rotation DriveNumber 33 3 4 fixed size of the bitmap in the window of a flat bed 35 closed drive to open the door so that the button greyed 36 37 38 buttons to change plans Font button 39 with the color static text control 40 MyButton
- 2023-07-11 02:15:03下载
- 积分:1
-
with Chinese explanation ~! More effective in reading comprehension and applicat...
带有中文说明~!
更有力于阅读理解和应用・!~!
-with Chinese explanation ~! More effective in reading comprehension and application! ~!
- 2022-06-11 16:03:41下载
- 积分:1
-
OutLook风格界面实现源码,VC++下开发的,怎能不与大家分享?!完全自由下载!...
OutLook风格界面实现源码,VC++下开发的,怎能不与大家分享?!完全自由下载!-OutLook style interface source, VC++ Under development could not share with you? ! Completely free download!
- 2022-10-16 13:25:03下载
- 积分:1
-
qt alarm实现闹钟
#include"alarm.h"
#include
Alarm::Alarm(QWidget * parent)
:QDialog(parent)
{
init();
layout();
con();
};
// ******
// 初始化
// ******
void Alarm::init()
{
setWindowTitle("Alarm clock"); //设置标题
setFixedSize(QSize(300,80)); //固定大小
timer=new QTimer; //控制lcd的时间刷新
uptimer=new QTimer; //控制对话框上升
dtimer=new QTimer; //控制对话框下降
itimer=new QTimer;
lcdNumber=new QLCDNumber; //显示当前时间
lcdNumber->setFixedSize(QSize(150,50)); //固定大小
lcdNumber->setNumDigits(8); //显示八个数字,默认是显示5个数字
lcdNumber->setSegmentStyle(QLCDNumber::Flat); //填充颜色,默认是白色的
lcdNumber->display(QTime::currentTime().toString("hh:mm:ss")); //设置格式,还有其他形式的
label=new QLabel(QString::fromLocal8Bit("闹钟")); //提示设置下个闹钟
- 2022-01-28 04:54:06下载
- 积分:1