Advertisement
Guest User

mainwindow.ui

a guest
Jan 17th, 2025
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | Source Code | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>MainWindow</class>
  4. <widget class="QMainWindow" name="MainWindow">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>613</width>
  10. <height>273</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>MainWindow</string>
  15. </property>
  16. <widget class="QWidget" name="centralwidget">
  17. <layout class="QGridLayout" name="gridLayout">
  18. <item row="1" column="0">
  19. <widget class="QCheckBox" name="checkBoxEnableButtons">
  20. <property name="text">
  21. <string>Enable Buttons</string>
  22. </property>
  23. </widget>
  24. </item>
  25. <item row="0" column="0">
  26. <layout class="QVBoxLayout" name="verticalLayout">
  27. <item>
  28. <widget class="QCheckBox" name="checkBoxDarkMode">
  29. <property name="layoutDirection">
  30. <enum>Qt::LayoutDirection::LeftToRight</enum>
  31. </property>
  32. <property name="text">
  33. <string>Dark Mode</string>
  34. </property>
  35. </widget>
  36. </item>
  37. <item>
  38. <spacer name="verticalSpacer_2">
  39. <property name="orientation">
  40. <enum>Qt::Orientation::Vertical</enum>
  41. </property>
  42. <property name="sizeHint" stdset="0">
  43. <size>
  44. <width>20</width>
  45. <height>40</height>
  46. </size>
  47. </property>
  48. </spacer>
  49. </item>
  50. <item>
  51. <widget class="QPushButton" name="pushButton">
  52. <property name="text">
  53. <string>Test Button 1</string>
  54. </property>
  55. </widget>
  56. </item>
  57. <item>
  58. <widget class="QPushButton" name="pushButton_2">
  59. <property name="text">
  60. <string>Test Button 2</string>
  61. </property>
  62. </widget>
  63. </item>
  64. <item>
  65. <widget class="QPushButton" name="pushButton_3">
  66. <property name="text">
  67. <string>Test Button 3</string>
  68. </property>
  69. </widget>
  70. </item>
  71. <item>
  72. <widget class="QPushButton" name="pushButton_4">
  73. <property name="text">
  74. <string>Test Button 4</string>
  75. </property>
  76. </widget>
  77. </item>
  78. <item>
  79. <spacer name="verticalSpacer">
  80. <property name="orientation">
  81. <enum>Qt::Orientation::Vertical</enum>
  82. </property>
  83. <property name="sizeHint" stdset="0">
  84. <size>
  85. <width>20</width>
  86. <height>40</height>
  87. </size>
  88. </property>
  89. </spacer>
  90. </item>
  91. </layout>
  92. </item>
  93. </layout>
  94. </widget>
  95. <widget class="QMenuBar" name="menubar">
  96. <property name="geometry">
  97. <rect>
  98. <x>0</x>
  99. <y>0</y>
  100. <width>613</width>
  101. <height>21</height>
  102. </rect>
  103. </property>
  104. </widget>
  105. <widget class="QStatusBar" name="statusbar"/>
  106. </widget>
  107. <resources/>
  108. <connections/>
  109. </ui>
  110.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement