7 Star 3 Fork 1

wjzhe / mapEditor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ConsoleBtn.qml 504 Bytes
一键复制 编辑 原始数据 按行查看 历史
import QtQuick 2.2
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.4
Rectangle {
id: root;
implicitHeight: 30;
implicitWidth: 30;
property alias text: consoleText.text
signal clicked;
Button{
id: consoleBtn;
anchors.fill: parent;
Text {
id:consoleText
font.pointSize: 18;
color: "black";
anchors.centerIn: parent;
}
onClicked: {
root.clicked();
}
}
}
C++
1
https://gitee.com/null_446_4477/mapeditor.git
git@gitee.com:null_446_4477/mapeditor.git
null_446_4477
mapeditor
mapEditor
master

搜索帮助