7 Star 3 Fork 1

wjzhe / mapEditor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ActCombo.qml 817 Bytes
一键复制 编辑 原始数据 按行查看 历史
wjzhe 提交于 2017-05-27 10:06 . 增加一期AGV操作
import QtQuick 2.0
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.2
Rectangle {
id: root;
width: 150;
property alias index: comboBox.currentIndex;
property alias model: comboBox.model;
property var actJsonVal: [0,2,3,4,9,10,7,8,17,20,21];
Row {
spacing: 8;
Text {
y: 4;
text: qsTr("Act:");
}
ComboBox {
width: 110;
id: comboBox;
model: [
"",
"精确停止",
"前行",
"后退",
"左移",
"右移",
"顺时针旋转",
"逆时针旋转",
"平台动作",
"避障",
"充电"
];
}
}
}
C++
1
https://gitee.com/null_446_4477/mapeditor.git
git@gitee.com:null_446_4477/mapeditor.git
null_446_4477
mapeditor
mapEditor
master

搜索帮助