-
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
-
自动搜索串口
在串口通讯时可以自动搜索到电脑的串口设备并添加在combobox中,就这一个功能,一个小例子
- 2023-01-22 06:35:03下载
- 积分:1
-
a dialog box under the demonstration program, EVC development, using coordinates...
一个WIN CE4.2下的对话框演示程序,用EVC开发,用坐标确定按键位置-a dialog box under the demonstration program, EVC development, using coordinates to determine location of the keys
- 2022-03-18 17:34:57下载
- 积分:1
-
笔迹识别笔迹识别
笔迹识别笔迹识别-handwriting recognition handwriting recognition
- 2022-06-28 04:01:47下载
- 积分:1
-
用VB编写的一款MP3播放小程序,模仿windows_xp的界面.
用VB编写的一款MP3播放小程序,模仿windows_xp的界面.-VB prepared using a small MP3 player program, to imitate windows_xp interface.
- 2023-03-19 14:05:04下载
- 积分:1
-
安全中断窗口 (C#)
翻译 maninwest@Codeforge 作者:Brisingr Aerowing@CodeProject
这是将 Richard MacCutchan的安全中断窗口移植到 C#
源代码在 Github 上。
使用代码
有两个显示中断窗口的方法:
public static void Blackout(IntPtr hWnd, Action action);
public static T Blackout(IntPtr hParentWnd, Func func);
第二个版本 (泛型)用于实现类似以下的功能:
BlackoutWindow.Blackout(SomeHandle, () => {
return MessageBox.Show("A Test", "A Test", MessageBoxButtons.YesNo);
});
- 2022-03-19 12:42:51下载
- 积分:1
-
HFSS仿真的helix结构,以及结果照片
HFSS仿真的helix结构,以及结果照片-HFSS simulation of the helix structure
- 2022-06-02 09:21:20下载
- 积分:1
-
wma_encoder
WMA_encoder/WMA解码器详解-WMA_encoder
- 2022-03-21 16:04:46下载
- 积分:1
-
DELPHI.NET use of the enhancements and DBP.NET example a database connection
DELPHI.NET使用VCL.NET和DBP.NET的数据库连接例子1-DELPHI.NET use of the enhancements and DBP.NET example a database connection
- 2022-03-18 15:24:57下载
- 积分:1
-
透明时钟的例子,可以直接运行
透明时钟的例子,可以直接运行-transparent clock example, can directly run
- 2022-04-14 12:36:28下载
- 积分:1