123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>TipWidget</class>
- <widget class="QWidget" name="TipWidget">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>168</width>
- <height>56</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Form</string>
- </property>
- <property name="styleSheet">
- <string notr="true">QLabel
- {
- background:transparent;
- }
- QLabel#label_tipIcon
- {
- font-weight: 500;
- font-size: 16px;
- color: rgba(0,0,0,0.85);
- line-height: 24px;
- text-align: left;
- font-style: normal;
- }
- </string>
- </property>
- <layout class="QHBoxLayout" name="horizontalLayout">
- <item>
- <widget class="QLabel" name="label_tipIcon">
- <property name="sizePolicy">
- <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
- <horstretch>0</horstretch>
- <verstretch>0</verstretch>
- </sizepolicy>
- </property>
- <property name="minimumSize">
- <size>
- <width>24</width>
- <height>24</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>24</width>
- <height>24</height>
- </size>
- </property>
- <property name="styleSheet">
- <string notr="true"/>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QLabel" name="label_tipTitle">
- <property name="styleSheet">
- <string notr="true">font-family:"Source Han Sans CN";
- font-size: 16px;
- font-weight: 500;
- color: rgba(0,0,0,0.85);</string>
- </property>
- <property name="text">
- <string>保存成功!</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignCenter</set>
- </property>
- </widget>
- </item>
- </layout>
- <zorder>label_tipTitle</zorder>
- <zorder>label_tipIcon</zorder>
- </widget>
- <resources/>
- <connections/>
- </ui>
|