PyQt4とPydevを使って小さなウィンドウを作成しました。以下のコードは次のとおりです。ウィンドウにQLineEditを表示するには?
import sys
from PyQt4 import QtGui
from PyQt4 import QtCore
# Create GUI object
app = QtGui.QApplication(sys.argv)
widget = QtGui.QWidget()
widget.setGeometry(400,300,800,800) # Position window
widget.resize(450,250) # Resize window
widget.setWindowTitle('Sample') # Set Title of the window
Password = QtGui.QLineEdit() # Input Box for password
widget.show() # Display window
# Exit program
sys.exit(app.exec_())
私はパスワードLINEEDITボックスを作成しましたが、どのようウィジェットで表され、アクティブなウィンドウ、に表示しますか?
私は自分の答えを更新しました。 –