| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>Widget</class>
- <widget class="QWidget" name="Widget">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>800</width>
- <height>600</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Widget</string>
- </property>
- <property name="styleSheet">
- <string notr="true">QWidget
- {
- background-color: #FFFFFF;
- }</string>
- </property>
- <widget class="TimeWidget" name="timeEdit">
- <property name="geometry">
- <rect>
- <x>120</x>
- <y>110</y>
- <width>191</width>
- <height>26</height>
- </rect>
- </property>
- </widget>
- <widget class="QPushButton" name="pBtn_disable">
- <property name="geometry">
- <rect>
- <x>400</x>
- <y>110</y>
- <width>80</width>
- <height>26</height>
- </rect>
- </property>
- <property name="text">
- <string>禁用</string>
- </property>
- </widget>
- <widget class="QPushButton" name="pBtn_enable">
- <property name="geometry">
- <rect>
- <x>510</x>
- <y>110</y>
- <width>80</width>
- <height>26</height>
- </rect>
- </property>
- <property name="text">
- <string>启用</string>
- </property>
- </widget>
- </widget>
- <customwidgets>
- <customwidget>
- <class>TimeWidget</class>
- <extends>QTimeEdit</extends>
- <header location="global">timewidget.h</header>
- </customwidget>
- </customwidgets>
- <resources/>
- <connections/>
- </ui>
|