gpt4 book ai didi

java - 我的形状上没有显示 J 组件?

转载 作者:行者123 更新时间:2023-11-30 04:09:54 25 4
gpt4 key购买 nike

我遇到了一个非常大的问题,当我创建 JLabel、Jbutton 等时......它在屏幕上显示方面起作用,但是当我想将它们放在矩形上时它会消失并且矩形只显示?

对于 JLabel,我选择使用拉绳,但现在我不得不尝试打开 JTextField。我不知道我错过了什么。

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.lang.*;
import javax.swing.event.*;

class main
{
public static void main (String Args [])
{
GUIwindow guiW = new GUIwindow();
}
}

class GUIwindow extends JFrame
{
JPanel grid = new JPanel();
JTextArea screenArea = new JTextArea("", 10, 20);
JScrollPane scrollBar = new JScrollPane(screenArea);

GUIwindow()
{
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setSize(500,800);
setTitle("Title here");
setLocationRelativeTo(null);

screenArea.setLineWrap(true);
screenArea.setEditable(false);


grid.add(scrollBar);
add(grid);
setVisible(true);
}

public void paint (Graphics g)
{
g.setColor(Color.decode("#0232ac"));
g.fillRoundRect(100, 50, 300, 600, 50, 50);
g.setColor(Color.white);
g.drawString("TitleonRect", 220, 80);
}

}

最佳答案

不要重写 JFrame 的 paint() 方法。

重写元素的 paintComponent() 方法。

如果您继承 JPanel,则可以重写其 paintComponent 方法:

class GridPanel extends JPanel {
GridPanel() {
super();
}

@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
g.setColor(Color.decode("#0232ac"));
g.fillRoundRect(100, 50, 300, 600, 50, 50);
g.setColor(Color.white);
g.drawString("TitleonRect", 220, 80);
}
}

关于java - 我的形状上没有显示 J 组件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19889792/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com