|
|
От: |
Igore
|
|
| Дата: | 19.09.17 09:20 | ||
| Оценка: | |||
| ui | |
| <?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>Form</class> <widget class="QWidget" name="Form"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>400</width> <height>300</height> </rect> </property> <property name="windowTitle"> <string>Form</string> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QPushButton" name="pushButton"> <property name="text"> <string>PushButton</string> </property> </widget> </item> <item> <widget class="QTableWidget" name="tableWidget"/> </item> </layout> </widget> <resources/> <connections> <connection> <sender>pushButton</sender> <signal>clicked()</signal> <receiver>tableWidget</receiver> <slot>resizeColumnsToContents()</slot> <hints> <hint type="sourcelabel"> <x>52</x> <y>21</y> </hint> <hint type="destinationlabel"> <x>131</x> <y>75</y> </hint> </hints> </connection> </connections> </ui> | |