12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>NewsWidget</class>
- <widget class="QWidget" name="NewsWidget">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>640</width>
- <height>480</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Form</string>
- </property>
- <layout class="QGridLayout" name="gridLayout">
- <item row="0" column="0">
- <widget class="QLabel" name="label">
- <property name="font">
- <font>
- <family>Arial</family>
- <pointsize>18</pointsize>
- </font>
- </property>
- <property name="styleSheet">
- <string notr="true">color: white;</string>
- </property>
- <property name="text">
- <string>Окно "Новости"</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignCenter</set>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <resources/>
- <connections/>
- </ui>
|