mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-15 00:56:01 +08:00
Add an About dialog for Cura
This commit is contained in:
parent
8cbc239af6
commit
e0e33aa029
24
qml/AboutDialog.qml
Normal file
24
qml/AboutDialog.qml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
import QtQuick 2.2
|
||||||
|
import QtQuick.Controls 1.1
|
||||||
|
import QtQuick.Layouts 1.1
|
||||||
|
import QtQuick.Window 2.1
|
||||||
|
|
||||||
|
import UM 1.0 as UM
|
||||||
|
|
||||||
|
UM.Dialog {
|
||||||
|
id: base
|
||||||
|
|
||||||
|
//: Add Printer dialog title
|
||||||
|
title: qsTr("About Cura");
|
||||||
|
|
||||||
|
Label {
|
||||||
|
text: "Cura";
|
||||||
|
}
|
||||||
|
|
||||||
|
rightButtons: Button {
|
||||||
|
text: "Close";
|
||||||
|
|
||||||
|
onClicked: base.visible = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user