1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>TimeWidget</class>
- <widget class="QFrame" name="TimeWidget">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>190</width>
- <height>43</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Form</string>
- </property>
- <property name="styleSheet">
- <string notr="true"/>
- </property>
- <layout class="QHBoxLayout" name="horizontalLayout_2">
- <property name="leftMargin">
- <number>0</number>
- </property>
- <property name="topMargin">
- <number>0</number>
- </property>
- <property name="rightMargin">
- <number>8</number>
- </property>
- <property name="bottomMargin">
- <number>0</number>
- </property>
- <item>
- <widget class="QLabel" name="lbl_tip">
- <property name="styleSheet">
- <string notr="true"/>
- </property>
- <property name="text">
- <string>请选择</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QDateTimeEdit" name="dateTimeEdit">
- <property name="styleSheet">
- <string notr="true"/>
- </property>
- <property name="buttonSymbols">
- <enum>QAbstractSpinBox::NoButtons</enum>
- </property>
- <property name="displayFormat">
- <string>hh:mm:ss</string>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QPushButton" name="btn_tip">
- <property name="minimumSize">
- <size>
- <width>18</width>
- <height>18</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>18</width>
- <height>18</height>
- </size>
- </property>
- <property name="styleSheet">
- <string notr="true">QPushButton
- {
- border-image: url(:/images/datetime.png);
- }
- QPushButton[selected=true]
- {
- border-image: url(:/images/datetime.png);
- }
- QPushButton::hover[selected=true]
- {
- border-image: url(:/images/cancle.png);
- }</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <resources/>
- <connections/>
- </ui>
|