- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个正在运行的 JFrame。如果我只是将 JFrame 设置为可见,则会显示整个 JFrame,但如果我在将 JFrame 设置为可见后尝试执行任何操作,则 JFrame 将出现,但它是透明的,只有标题和关闭选项可见。这是最近才发生的,我不知道发生了什么......
可见 JFrame
GUI frame = new GUI(); //GUI is a class that extends JFrame
frame.setVisible(true);
透明 JFrame
GUI frame = new GUI(); //GUI is a class that extends JFrame
frame.setVisible(true);
frame.setVisible(false); //If I throw a breakpoint here, as soon as it goes from .setVisible(true) to this line, the GUI appears, but is transparent
代码
public class GUI extends JFrame {
private JPanel contentPane;
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
GUI frame = new GUI();
frame.setVisible(true);
frame.setVisible(false);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public GUI() {
setTitle("Title");
setResizable(false);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 330, 250);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
contentPane.setLayout(new BorderLayout(0, 0));
setContentPane(contentPane);
}
图片
最佳答案
问题可能出在这里:
frame.setVisible(false); // If I throw a breakpoint here, as soon as it goes from
// .setVisible(true) to this line, the GUI appears,
// but is transparent
通过在运行 Swing 代码时设置断点,您可以阻止 Swing 事件线程,从而阻止 GUI 绘制或与用户交互。如果您需要在 GUI 运行时调试它,则可以尝试不同的方法,包括使用记录器记录程序运行时的状态。
编辑
您在评论中声明:
I want the user to finish selecting their settings before the applications proceeds forward. So I am not actually using a while(true), but a while(visible). visible is a boolean that is set to false when the user clicks on a button on the gui, which will break out of the loop.
那么解决方案就完全不同而且非常简单:不要使用第二个 JFrame 来显示此设置显示窗口,而是您需要使用 modal JDialog 或 JOptionPane(这实际上是只不过是一个专门的模态 JDialog。
之所以有帮助,是因为 Swing 有一种用于模态对话框的特殊机制,它在将对话框设置为可见后立即卡住调用窗口中的代码流。因此,调用代码将始终知道对话框何时不再可见,因为其代码的程序流仅在对话框不可见时才会恢复。因此,您可能希望在设置对话框或 JOptionPane 可见的行之后立即提取对话窗口的数据。在您因为过于简单而放弃 JOptionPanes 之前,请了解它们的第二个参数,即 Object 类型的参数可以将任何 Swing GUI 组件作为参数,包括一个拥有非常大且复杂的 GUI 的 JPanel,这使得这些工具非常有用。
编辑2
您在评论中声明:
I am using WindowsBuilder for my GUI related things to make things easier for me. Unfortunately, it doesn't offer the option to use JOptionPane. There are no JDialogue, too. I want to stay on the route that WindowsBuilder will be able to modify.
在您了解底层库之前,我不会大谈特谈为什么避免使用代码生成工具很重要,...但我确实建议您检查 WindowBuilder 工具是否为您提供了该选项创建一个扩展 JPanel 的类。如果是这样,那么就这样做,创建您的 JPanel,然后在调用代码中,只需将您的 JPanel 填充到 JOptionPane 或模态 JDialog 中。
编辑3
例如,假设您有一个名为 GetInfoPanel
的 JPanel,它允许用户输入一些文本并选择一个 JRadioButton:
class GetInfoPanel extends JPanel {
public static final String[] COLOR_STRINGS = {"Red", "Green", "Blue", "Orange"};
private JTextField infoField = new JTextField(10);
private ButtonGroup buttonGroup = new ButtonGroup();
public GetInfoPanel() {
JPanel topPanel = new JPanel();
topPanel.add(new JLabel("Information that you want to submit:"));
topPanel.add(infoField);
JPanel colorPanel = new JPanel(new GridLayout(1, 0, 5, 0));
for (String colorString : COLOR_STRINGS) {
JRadioButton radioButton = new JRadioButton(colorString);
radioButton.setActionCommand(colorString);
buttonGroup.add(radioButton);
colorPanel.add(radioButton);
}
setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
add(topPanel);
add(colorPanel);
}
public String getInfo() {
return infoField.getText();
}
public String getColorString() {
String selection = "";
ButtonModel model = buttonGroup.getSelection();
if (model != null) {
selection = model.getActionCommand();
}
return selection;
}
}
然后调用类可以创建上面的实例并将其打包并显示在 JOptionPane 中,然后提取其中包含的信息:
public void actionPerformed(ActionEvent e) {
// create our GetInfoPanel
GetInfoPanel getInfoPanel = new GetInfoPanel();
// display it in a JOptionPane which is a modal JDialog
JOptionPane.showMessageDialog(TestGetInfo.this, getInfoPanel,
"Enter Information Please", JOptionPane.PLAIN_MESSAGE);
// this code will not be called until the dialog above is no longer visible
// extract the text from the getInfoPanel's text field
String info = getInfoPanel.getInfo();
infoDisplayField.setText(info);
// extract the the radiobutton selection from the getInfoPanel
String colorString = getInfoPanel.getColorString();
colorStringField.setText(colorString);
}
你可以在这个程序中自己测试:
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import javax.swing.*;
@SuppressWarnings("serial")
public class TestGetInfo extends JPanel {
private JTextField infoDisplayField = new JTextField(10);
private JTextField colorStringField = new JTextField(10);
private JButton displayGetInfoBtn = new JButton(new DisplayGetInfoAction(
"Get Info"));
public TestGetInfo() {
infoDisplayField.setFocusable(false);
colorStringField.setFocusable(false);
add(new JLabel("Info:"));
add(infoDisplayField);
add(Box.createHorizontalStrut(10));
add(new JLabel("Color:"));
add(colorStringField);
add(Box.createHorizontalStrut(10));
add(displayGetInfoBtn);
}
private class DisplayGetInfoAction extends AbstractAction {
public DisplayGetInfoAction(String name) {
// this will be the button's text:
super(name);
}
@Override
public void actionPerformed(ActionEvent e) {
// create our GetInfoPanel
GetInfoPanel getInfoPanel = new GetInfoPanel();
// display it in a JOptionPane which is a modal JDialog
JOptionPane.showMessageDialog(TestGetInfo.this, getInfoPanel,
"Enter Information Please", JOptionPane.PLAIN_MESSAGE);
// this code will not be called until the dialog above is no longer visible
// extract the text from the getInfoPanel's text field
String info = getInfoPanel.getInfo();
infoDisplayField.setText(info);
// extract the the radiobutton selection from the getInfoPanel
String colorString = getInfoPanel.getColorString();
colorStringField.setText(colorString);
}
}
private static void createAndShowGui() {
TestGetInfo mainPanel = new TestGetInfo();
JFrame frame = new JFrame("TestGetInfo");
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frame.getContentPane().add(mainPanel);
frame.pack();
frame.setLocationByPlatform(true);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGui();
}
});
}
}
@SuppressWarnings("serial")
class GetInfoPanel extends JPanel {
public static final String[] COLOR_STRINGS = {"Red", "Green", "Blue", "Orange"};
private JTextField infoField = new JTextField(10);
private ButtonGroup buttonGroup = new ButtonGroup();
public GetInfoPanel() {
JPanel topPanel = new JPanel();
topPanel.add(new JLabel("Information that you want to submit:"));
topPanel.add(infoField);
JPanel colorPanel = new JPanel(new GridLayout(1, 0, 5, 0));
for (String colorString : COLOR_STRINGS) {
JRadioButton radioButton = new JRadioButton(colorString);
radioButton.setActionCommand(colorString);
buttonGroup.add(radioButton);
colorPanel.add(radioButton);
}
setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
add(topPanel);
add(colorPanel);
}
public String getInfo() {
return infoField.getText();
}
public String getColorString() {
String selection = "";
ButtonModel model = buttonGroup.getSelection();
if (model != null) {
selection = model.getActionCommand();
}
return selection;
}
}
关于java - 为什么 JFrame 是透明的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27510216/
我想禁用我的 UIButton,所以我调用: button.enabled = FALSE; 然而,这会使按钮变得透明,我可以看到它下面的元素。我不介意它改变颜色,我只是不希望它是透明的。 我尝试在
一个常规的 NSButton 如果被禁用,它似乎是透明的。 图像显示了一个样式为“push”的按钮 但是,我想禁用没有透明度的按钮。 我试图以编程方式将 alphaValue 设置为 1.0 但似乎
我正在尝试将Memoji从iPhone/Mac转换为具有透明背景的一系列png,以便我可以创建一个 Sprite 表。当按下空格键时,我可以清楚地看到它具有透明背景,但是在运行 ffmpeg -i s
我想创建一个具有部分透明背景的 View (舞台、窗口)。我有一张包含 Alpha channel 的图像 我在JavaFx中使用了这种场景,我必须将场景填充设置为空,并将根节点背景颜色设置为透明。我
我想创建一个具有部分透明背景的 View (舞台、窗口)。我有一张包含 Alpha channel 的图像 我在JavaFx中使用了这种场景,我必须将场景填充设置为空,并将根节点背景颜色设置为透明。我
我想将 JDesktopPane 设置为透明,并允许我单击下面的内容(例如桌面图标等)。内部框架应保持不透明,并且能够像当前一样在屏幕周围重新定位。有什么想法吗? package test1;
我知道我不是第一个提出此类问题的人,但我认为我的问题有点不同。 我在 MS Paint 上绘制了一个 png 图像,它是一个播放器,当我使用图形对象绘制图像时,我希望图像的背景是透明的。我尝试了一些带
我在 Mac 的 swift 项目中想使用单选按钮,但与我的背景颜色相同。如何将背景设置为不透明或更改背景颜色? 最佳答案 我找到了解决此问题的方法。将单选按钮的文本设置为“”,将 rb 添加到水平堆
我无法将我的相对布局设置为透明。我尝试了很多不同的方法,从类中自定义 View ,添加 android:background="@android:color/transparent"等。它们要么像下图
在 Storyboard中,我创建了一个 ![UINavigationController] 及其 Root View Controller UIViewcontroller。在工具栏中,我有一个分段
我必须让我的导航栏透明,我试过这段代码: self.navigationController?.navigationBar.setBackgroundImage(UIImage(), for: UIB
我注意到,如果我将 View 背景颜色设置为透明,则在 segue 过渡结束后背景颜色会变成黑色(我猜这是默认的“视口(viewport)”颜色)。 我可以改变吗?当然,我可以将颜色从透明更改为紫色,
嘿,有没有可能让滚动条“隐藏”,我不想使用 overflow-y: hidden就像背景:透明或类似的东西 最佳答案 Here您会找到有关如何仅使用 CSS 隐藏滚动条的说明。 在第二个example
默认情况下,背景显示为白色。是否可以通过任何方式将其背景颜色更改为透明..? (function() { var cx = '005519348941191855053:d0uziw7c
我正在尝试添加一个在 div 的左右边缘具有透明度/淡出的嵌入框阴影。我设法添加了一个普通的嵌入框阴影,但我不知道如何为边缘添加透明度。我该怎么做? 这是我正在努力实现的一个例子。 .contai
如何删除 周围的边框并使其背景透明? 最佳答案 试试这个: border: none; border-color: transparent; 关于html - 透明、无边框的文本输入,我们在Stac
是否可以使 JButton 透明(包括边框)而不是文本?我扩展了 swing 的 JButton 并覆盖了它: @Override public void paint(Graphics g) {
众所周知,要使QWidget/QOpenGLWidget半透明/透明,只需: widget->setAttribute(Qt::WA_TranslucentBackground) 但是,由于 QWin
我想知道如何在 Ubuntu 中为所有应用程序制作透明 Gnome 终端,我知道我们可以为桌面制作透明终端,而不是为所有应用程序制作透明终端。我用谷歌搜索了很多,但找不到任何解决方案。谁能告诉我该怎么
我想让 SWT Canvas 的背景透明,以便可以看到它后面的其他小部件。 我尝试将 alpha 设置为 0 并用矩形填充 Canvas ,并且还使用选项 SWT.NO_BACKGROUND 无济于事
我是一名优秀的程序员,十分优秀!