【RAD統合環境】 Qt 総合スレ 5 【Win/Mac/Linux】at TECH
【RAD統合環境】 Qt 総合スレ 5 【Win/Mac/Linux】 - 暇つぶし2ch134:デフォルトの名無しさん
09/10/17 20:14:51
ウィンドウにボタンを二つ上下に並べてみようと思ったんですが
これだとめっさ小さなボタンになってしまいます.
ウィンドウ一杯に(日←みたいな感じで)二個並べたいんですが
どうしたらいいんでしょう?wxPythonでサイザーをちょっと
使ったことがある程度です.

import PyQt4.QtGui,PyQt4.QtCore, ys

class HelloButton(PyQt4.QtGui.QPushButton):
    def __init__(self, parent, text):
        PyQt4.QtGui.QPushButton.__init__(self, parent)
        self.setText(text)

class HelloWindow(PyQt4.QtGui.QMainWindow):
    def __init__(self, *args):
        PyQt4.QtGui.QMainWindow.__init__(self)

        self.hello_button_1 = HelloButton(self, "hello1")
        self.hello_button_2 = HelloButton(self, "hello2")
        self.qVBoxLayout = PyQt4.QtGui.QVBoxLayout()
        self.qVBoxLayout.addWidget(self.hello_button_1)
        self.qVBoxLayout.addWidget(self.hello_button_2)
        self.q_widget = PyQt4.QtGui.QWidget(self)
        self.q_widget.setLayout(self.qVBoxLayout)

q_application = PyQt4.QtGui.QApplication(sys.argv)
hello_window = HelloWindow()
hello_window.show()
q_application.connect(q_application, PyQt4.QtCore.SIGNAL("lastWindowClosed()"),
                      q_application, PyQt4.QtCore.SLOT("quit()"))
q_application.exec_()


次ページ
続きを表示
1を表示
最新レス表示
レスジャンプ
類似スレ一覧
スレッドの検索
話題のニュース
おまかせリスト
オプション
しおりを挟む
スレッドに書込
スレッドの一覧
暇つぶし2ch