版權聲明:本文爲博主原創文章,遵循 CC 4.0 BY-SA 版權協議,轉載請附上原文出處連接和本聲明。
本文連接:https://blog.csdn.net/a844651990/article/details/78376767
Qt qml 自定義消息提示框
QtQuick有提供比較傳統的信息提示框MessageDialog,可是實際開發過程並不
太能知足咱們的需求。下面是根據controls2模塊中Dialog控件自定義的簡單的信息提示框。async
能夠根據信息的多少來自動調節信息框的大小:字體
下面上代碼:
1
MsgDialog.qmlui
import QtQuick 2.6
import QtQuick.Window 2.2
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.3.net
Item {
id: root
anchors.centerIn: parent
//提示框內容
property alias tipText: msg.text
//提示框顏色
property string backGroundColor: "white"
property Item parentItem : Rectangle {}blog
//Dialog header、contentItem、footer之間的間隔默認是12
// 提示框的最小寬度是 100
width: {
if(msg.implicitWidth < 100 || msg.implicitWidth == 100)
return 100;
else
return msg.implicitWidth > 300 ? 300 + 24 : (msg.implicitWidth + 24);
}
height: msg.implicitHeight + 24 + 100ip
Dialog {
id: dialog
width: root.width
height: root.height
modal: true
background: Rectangle {
color: backGroundColor
anchors.fill: parent
radius: 5
}
header: Rectangle {
width: dialog.width
height: 50
border.color: backGroundColor
radius: 5
Image {
width: 40
height: 40
anchors.centerIn: parent
source: "/images/warning_48.png"
}
}
contentItem: Rectangle {
border.color: backGroundColor
color: backGroundColor
Text {
anchors.fill: parent
anchors.centerIn: parent
font.family: "Microsoft Yahei"
color: "gray"
text: tipText
wrapMode: Text.WordWrap
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenterci
}
}
footer: Rectangle {
width: msg.width
height: 50
border.color: backGroundColor
color: backGroundColor
radius: 5
Button {
anchors.centerIn: parent
width: 80
height: 30
background: Rectangle {
anchors.centerIn: parent
width: 80
height: 30
radius: 5
border.color: "#0f748b"
border.width: 2
color: backGroundColor
Text {
anchors.centerIn: parent
font.family: "Microsoft Yahei"
font.bold: true
color: "#0f748b"
text: "OK"
}
}
onClicked: {
dialog.close();
}
}
}
}開發
//利用Text 的implicitWidth屬性來調節提示框的大小
//該Text的字體格式須要與contentItem中的字體如出一轍
Text {
id: msg
visible: false
width: 300
wrapMode: Text.WordWrap
font.family: "Microsoft Yahei"
verticalAlignment: Text.AlignVCenter
horizontalAlignment: Text.AlignHCenter
}源碼
function openMsg() {
root.x = (parent.width - dialog.width) * 0.5
root.y = (parent.height - dialog.height) * 0.5
dialog.open();
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
在作這個控件的時候發現了一個問題,就是當咱們利用Loader加載控件而且該控件使用了controls2模塊時,把loader的asynchronous屬性設置爲true的時候,會報錯」Object destroyed during incubation」,目前尚未找到解決的辦法,有知道的同窗能夠交流一下。。。。string
注意:做者使用的是Qt5.9版本,文章中使用的有些屬性是從Qt5.8纔開始有的!
源碼下載: http://download.csdn.net/download/a844651990/10042941 ———————————————— 版權聲明:本文爲CSDN博主「FlyWM_」的原創文章,遵循 CC 4.0 BY-SA 版權協議,轉載請附上原文出處連接及本聲明。 原文連接:https://blog.csdn.net/a844651990/article/details/78376767