本文整理汇总了Python中javax.swing.JFrame.contentPane方法的典型用法代码示例。如果您正苦于以下问题:Python JFrame.contentPane方法的具体用法?Python JFrame.contentPane怎么用?Python JFrame.contentPane使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.swing.JFrame
的用法示例。
在下文中一共展示了JFrame.contentPane方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: show_gui
# 需要导入模块: from javax.swing import JFrame [as 别名]
# 或者: from javax.swing.JFrame import contentPane [as 别名]
def show_gui():
"""
Shows a GUI to select dss files to compare and select an input file
"""
from javax.swing import JPanel, JFrame, JButton, SpringLayout, JTextBox
from javax.swing.border import LineBorder
textBox1 = JTextBox()
textBox2 = JTextBox()
file1ChooseButton = JButton("Choose File")
file2ChooseButton = JButton("Choose File")
contentPane = JPanel(SpringLayout())
contentPane.setBorder(LineBorder(Color.blue))
contentPane.add(JLabel("Alternative DSS File"))
contentPane.add(textBox1)
contentPane.add(file1ChooseButton)
contentPane.add(JLabel("Base DSS File"))
contentPane.add(textBox2)
contentPane.add(file2ChooseButton)
fr = JFrame("Calsim Report Generator")
fr.contentPane().add(contentPane)
fr.pack();fr.show();