Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>MainWindow</class>
- <widget class="QMainWindow" name="MainWindow">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>800</width>
- <height>350</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>CodedSkills: Currency Converter</string>
- </property>
- <widget class="QWidget" name="centralwidget">
- <widget class="QLabel" name="label">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>770</width>
- <height>110</height>
- </rect>
- </property>
- <property name="font">
- <font>
- <family>Courier New</family>
- <pointsize>15</pointsize>
- <weight>55</weight>
- <bold>true</bold>
- </font>
- </property>
- <property name="text">
- <string>Convert Your Currency.</string>
- </property>
- <property name="alignment">
- <set>Qt::AlignCenter</set>
- </property>
- </widget>
- <widget class="QComboBox" name="dropDown1">
- <property name="geometry">
- <rect>
- <x>100</x>
- <y>90</y>
- <width>241</width>
- <height>61</height>
- </rect>
- </property>
- </widget>
- <widget class="QComboBox" name="dropDown2">
- <property name="geometry">
- <rect>
- <x>430</x>
- <y>90</y>
- <width>241</width>
- <height>61</height>
- </rect>
- </property>
- </widget>
- <widget class="QPushButton" name="pushButton">
- <property name="geometry">
- <rect>
- <x>100</x>
- <y>235</y>
- <width>571</width>
- <height>60</height>
- </rect>
- </property>
- <property name="text">
- <string>Change</string>
- </property>
- </widget>
- <widget class="QLCDNumber" name="lcdpanel">
- <property name="geometry">
- <rect>
- <x>430</x>
- <y>170</y>
- <width>241</width>
- <height>61</height>
- </rect>
- </property>
- </widget>
- <widget class="QLabel" name="label_2">
- <property name="geometry">
- <rect>
- <x>370</x>
- <y>110</y>
- <width>41</width>
- <height>16</height>
- </rect>
- </property>
- <property name="font">
- <font>
- <family>Courier New</family>
- <pointsize>20</pointsize>
- <italic>true</italic>
- </font>
- </property>
- <property name="text">
- <string>→</string>
- </property>
- </widget>
- <widget class="QLabel" name="label_3">
- <property name="geometry">
- <rect>
- <x>370</x>
- <y>190</y>
- <width>41</width>
- <height>16</height>
- </rect>
- </property>
- <property name="font">
- <font>
- <family>Courier New</family>
- <pointsize>20</pointsize>
- <italic>true</italic>
- </font>
- </property>
- <property name="text">
- <string>→</string>
- </property>
- </widget>
- <widget class="QLineEdit" name="lineEdit">
- <property name="geometry">
- <rect>
- <x>100</x>
- <y>170</y>
- <width>241</width>
- <height>61</height>
- </rect>
- </property>
- </widget>
- </widget>
- <widget class="QStatusBar" name="statusbar"/>
- </widget>
- <resources/>
- <connections/>
- </ui>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement