Skip to content

Instantly share code, notes, and snippets.

@manashmandal
Created April 13, 2016 05:44
Show Gist options
  • Save manashmandal/6bd6f650e0659a334ef0650082168ac7 to your computer and use it in GitHub Desktop.
Save manashmandal/6bd6f650e0659a334ef0650082168ac7 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>TheWidgetItem</class>
<widget class="QWidget" name="TheWidgetItem">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>363</width>
<height>83</height>
</rect>
</property>
<property name="windowTitle">
<string>Form</string>
</property>
<layout class="QGridLayout" name="gridLayout">
<item row="0" column="0">
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<widget class="QLineEdit" name="lineEdit">
<property name="placeholderText">
<string>Write something</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="pressThisBtn">
<property name="text">
<string>Press this</string>
</property>
</widget>
</item>
<item>
<widget class="QLabel" name="label">
<property name="text">
<string>Text from lineEdit</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout">
<item>
<widget class="QSlider" name="horizontalSlider">
<property name="maximum">
<number>100</number>
</property>
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
</widget>
</item>
<item>
<widget class="QProgressBar" name="progressBar">
<property name="value">
<number>0</number>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment