作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用 JFrame 和 JPanel 时遇到问题。我的完整代码如下:
class GUIExample
{
public static void main(String args[])
{
//Creating the frame
JFrame frame=new JFrame("Chat Frame");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(400,400);
frame.setLocationRelativeTo(null);
frame.setDefaultLookAndFeelDecorated(true);
frame.setLayout(new FlowLayout());
//Creating data panel and a label and a text box
JPanel dataPanel=new JPanel();
dataPanel.setLayout(new FlowLayout());
dataPanel.setLocation(0,0);
dataPanel.setOpaque(true);
dataPanel.setBackground(Color.WHITE);
dataPanel.setSize(200,200);
JLabel lblName=new JLabel("Enter Text: ");
lblName.setLayout(new FlowLayout());
lblName.setBounds(0, 10, 2, 2);
dataPanel.add(lblName);
frame.add(dataPanel);
frame.setVisible(true);
}
}
请帮助了解该程序发生了什么
最佳答案
它显示一个带有标签的窗口,上面写着“输入文本:”有什么问题吗??
关于Java JFrame_JPanel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12703187/
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve th
我是一名优秀的程序员,十分优秀!