Skip to content

Instantly share code, notes, and snippets.

@p--q
Last active January 10, 2016 09:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save p--q/4cdc8f18ddddbe4dc058 to your computer and use it in GitHub Desktop.
Save p--q/4cdc8f18ddddbe4dc058 to your computer and use it in GitHub Desktop.
linuxBean14.04(97)Qt4 Designerを使ってみる
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Dialog</class>
<widget class="QDialog" name="Dialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>400</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle">
<string>HelloWorldウィンドウ</string>
</property>
<widget class="QPushButton" name="pushButton">
<property name="geometry">
<rect>
<x>140</x>
<y>150</y>
<width>111</width>
<height>21</height>
</rect>
</property>
<property name="text">
<string>ここをクリック</string>
</property>
</widget>
<widget class="QTextEdit" name="textEdit">
<property name="geometry">
<rect>
<x>30</x>
<y>200</y>
<width>341</width>
<height>71</height>
</rect>
</property>
</widget>
<widget class="QLabel" name="label">
<property name="geometry">
<rect>
<x>120</x>
<y>80</y>
<width>161</width>
<height>21</height>
</rect>
</property>
<property name="text">
<string>Hello World プログラム</string>
</property>
</widget>
</widget>
<resources/>
<connections/>
</ui>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment