-
一个计算器 用VB写的 用的是和XP一样的界面
一个计算器 用VB写的 用的是和XP一样的界面-a calculator with VB write and use the same interface XP
- 2022-04-20 22:29:59下载
- 积分:1
-
自己初学VB时编写的一个计算器的例子,欢迎初学者下载
自己初学VB时编写的一个计算器的例子,欢迎初学者下载-VB beginner to prepare themselves when a calculator example, beginners welcome to download
- 2022-06-13 13:44:01下载
- 积分:1
-
- 2022-01-26 01:41:28下载
- 积分:1
-
道路设计中,平面曲线计算的模型类,该类中可计算缓和曲线.
道路设计中,平面曲线计算的模型类,该类中可计算缓和曲线.-road design, calculation of the plane curve model categories, which translate such relaxation curves.
- 2022-12-03 20:05:03下载
- 积分:1
-
无线通信
关于zigbee芯片2431的应用方面的
无线通信
关于zigbee芯片2431的应用方面的-Zigbee wireless communication chip 2431 on the application of the
- 2023-06-27 22:30:04下载
- 积分:1
-
基于对话框编程,实现窗体的万花筒的效果,改善界面美观
基于对话框编程,实现窗体的万花筒的效果,改善界面美观-Dialog based programming, a kaleidoscope of forms results in improving the interface, beautiful
- 2022-12-12 21:45:03下载
- 积分:1
-
AppWizard has created this HistoryEditDemo application for you. This application...
AppWizard has created this HistoryEditDemo application for you. This application
not only demonstrates the basics of using the Microsoft Foundation classes
but is also a starting point for writing your application.
- 2022-08-03 10:06:31下载
- 积分:1
-
网络中的计算机
检查计算机是否网络化。
- 2023-08-13 01:30:03下载
- 积分:1
-
9x系统中读ntfs格式补丁
9x系统中读ntfs格式补丁-9x system Reading ntfs format patch
- 2022-01-25 21:55:25下载
- 积分:1
-
QT编写的C++贪吃蛇小游戏
游戏通过按键控制
部分代码:
#include "gamewidget.h"
#define ROW 13
#define COL 16
#define UP 0
#define DOWN 1
#define LEFT 2
#define RIGHT 3
GameWidget::GameWidget(QWidget *parent)
:QWidget(parent)
{
this->setAutoFillBackground(true);//覆盖
this->resize(480,270);
this->setWindowIcon(QIcon("img/icon.jpg"));
this->setWindowTitle("贪吃蛇");
QPalette palette;
palette.setBrush(QPalette::Background,QBrush((QPixmap)"img/bjt.png"));
this->setPalette(palette);
//按扭区
leftbtn=new QPushButton(this);
leftbtn->setIcon((QIcon)"img/zuo.png");
leftbtn->setIconSize(QSize(40,40));
leftbtn->setGeometry(QRect(340,180,40,40));
leftbtn->setFlat(true);
rightbtn=new QPushButton(this);
rightbtn->setIcon((QIcon)"img/you.png");
rightbtn->setIconSize(QSize(40,40));
rightbtn->setGeometry(QRect(430,180,40,40));
rightbtn->setFlat(true
- 2022-03-21 19:09:00下载
- 积分:1