Advertisement
Guest User

Radio button UI file

a guest
Jul 15th, 2014
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ui version="4.0">
  3. <class>Dialog</class>
  4. <widget class="QDialog" name="Dialog">
  5. <property name="geometry">
  6. <rect>
  7. <x>0</x>
  8. <y>0</y>
  9. <width>102</width>
  10. <height>106</height>
  11. </rect>
  12. </property>
  13. <property name="windowTitle">
  14. <string>Dialog</string>
  15. </property>
  16. <layout class="QVBoxLayout" name="verticalLayout_2">
  17. <item>
  18. <layout class="QVBoxLayout" name="verticalLayout">
  19. <item>
  20. <widget class="QRadioButton" name="radioButton">
  21. <property name="text">
  22. <string>RadioButton</string>
  23. </property>
  24. <property name="checked">
  25. <bool>true</bool>
  26. </property>
  27. <attribute name="buttonGroup">
  28. <string notr="true">buttonGroup</string>
  29. </attribute>
  30. </widget>
  31. </item>
  32. <item>
  33. <widget class="QRadioButton" name="radioButton_2">
  34. <property name="text">
  35. <string>RadioButton</string>
  36. </property>
  37. <attribute name="buttonGroup">
  38. <string notr="true">buttonGroup</string>
  39. </attribute>
  40. </widget>
  41. </item>
  42. <item>
  43. <widget class="QRadioButton" name="radioButton_3">
  44. <property name="text">
  45. <string>RadioButton</string>
  46. </property>
  47. <property name="checked">
  48. <bool>true</bool>
  49. </property>
  50. <attribute name="buttonGroup">
  51. <string notr="true">buttonGroup_2</string>
  52. </attribute>
  53. </widget>
  54. </item>
  55. <item>
  56. <widget class="QRadioButton" name="radioButton_4">
  57. <property name="text">
  58. <string>RadioButton</string>
  59. </property>
  60. <attribute name="buttonGroup">
  61. <string notr="true">buttonGroup_2</string>
  62. </attribute>
  63. </widget>
  64. </item>
  65. </layout>
  66. </item>
  67. </layout>
  68. </widget>
  69. <resources/>
  70. <connections/>
  71. <buttongroups>
  72. <buttongroup name="buttonGroup"/>
  73. <buttongroup name="buttonGroup_2"/>
  74. </buttongroups>
  75. </ui>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement