123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>QMinMaxWindowWidget</class>
- <widget class="QWidget" name="QMinMaxWindowWidget">
- <property name="enabled">
- <bool>true</bool>
- </property>
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>112</width>
- <height>27</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string/>
- </property>
- <layout class="QHBoxLayout" name="horizontalLayout">
- <property name="spacing">
- <number>0</number>
- </property>
- <property name="leftMargin">
- <number>0</number>
- </property>
- <property name="topMargin">
- <number>0</number>
- </property>
- <property name="rightMargin">
- <number>0</number>
- </property>
- <property name="bottomMargin">
- <number>0</number>
- </property>
- <item>
- <widget class="QToolButton" name="toolButtonMin">
- <property name="minimumSize">
- <size>
- <width>25</width>
- <height>25</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>25</width>
- <height>25</height>
- </size>
- </property>
- <property name="styleSheet">
- <string notr="true">QToolButton{
- image:url(:/CHJUnHandle/Resources/sysbtn/nav_maxamin.png);
- border:none;
- }
- QToolButton:hover{
- border-radius: 4px ;
- background-color: rgb(73, 154, 97);
- }</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QToolButton" name="toolButtonMax">
- <property name="minimumSize">
- <size>
- <width>25</width>
- <height>25</height>
- </size>
- </property>
- <property name="maximumSize">
- <size>
- <width>25</width>
- <height>25</height>
- </size>
- </property>
- <property name="styleSheet">
- <string notr="true">QToolButton{
- border:none;
- image:url(:/CHJUnHandle/Resources/sysbtn/nav_min.png);
- }
- QToolButton:hover{
- border-radius: 4px ;
- background-color: rgb(73, 154, 97);
- }
- QToolButton:checked{
- image:url(:/CHJUnHandle/Resources/sysbtn/nav_max.png);
- }</string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- <item>
- <widget class="QToolButton" name="toolButtonClose">
- <property name="maximumSize">
- <size>
- <width>25</width>
- <height>25</height>
- </size>
- </property>
- <property name="styleSheet">
- <string notr="true">QToolButton{
- border:none;
- image:url(:/CHJUnHandle/Resources/sysbtn/nav_close.png);
- }
- QToolButton:hover{
- background-color: rgb(210,32,30);
- border-radius: 4px ;
- }
- </string>
- </property>
- <property name="text">
- <string/>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <layoutdefault spacing="6" margin="11"/>
- <resources/>
- <connections/>
- </ui>
|