<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>ConfirmTipsDialog</class> <widget class="QDialog" name="ConfirmTipsDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>500</width> <height>360</height> </rect> </property> <property name="windowTitle"> <string>Dialog</string> </property> <widget class="QDialogButtonBox" name="btnBoxConfirm"> <property name="geometry"> <rect> <x>0</x> <y>280</y> <width>500</width> <height>50</height> </rect> </property> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> </property> </widget> <widget class="QLabel" name="labIcon"> <property name="geometry"> <rect> <x>186</x> <y>30</y> <width>128</width> <height>128</height> </rect> </property> <property name="text"> <string/> </property> <property name="pixmap"> <pixmap resource="resource.qrc">:/images/tipsConfirm.png</pixmap> </property> <property name="scaledContents"> <bool>true</bool> </property> </widget> <widget class="QLabel" name="labTipsContent"> <property name="geometry"> <rect> <x>0</x> <y>200</y> <width>500</width> <height>50</height> </rect> </property> <property name="text"> <string/> </property> <property name="alignment"> <set>Qt::AlignCenter</set> </property> </widget> </widget> <resources> <include location="resource.qrc"/> </resources> <connections> <connection> <sender>btnBoxConfirm</sender> <signal>accepted()</signal> <receiver>ConfirmTipsDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>248</x> <y>254</y> </hint> <hint type="destinationlabel"> <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>btnBoxConfirm</sender> <signal>rejected()</signal> <receiver>ConfirmTipsDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>316</x> <y>260</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> </connections> </ui>