gpt4 book ai didi

JavaFX 闪烁(最近重新绘制)onmouseover 与集成 Swing

转载 作者:行者123 更新时间:2023-11-30 09:12:50 24 4
gpt4 key购买 nike

我尝试将 javaFX 应用程序集成到 Swing 应用程序中,并成功完成。

但问题是,我无法解决鼠标悬停在按钮上时javaFX相关面板闪烁(重绘很慢)的问题。

是否有任何解决方案,或者我会尝试将 Swing 集成到 javaFX 中?这会很烦人。

private void initFX(JFXPanel fxPanel) throws IOException {
// This method is invoked on the JavaFX thread
scene = createScene();
fxPanel.setScene(scene);
}

public MainFrame() {

Panel container = new Panel();
container.setLayout(null);
try {
final JFXPanel panel = new JFXPanel();
Insets insets = container.getInsets();
container.add(panel);

JApplet mapApplet = (JApplet)Class.forName("samples.mainApp.MainApplet").newInstance();
container.add(mapApplet); //Display Applet
add(container);

mapApplet.setBounds(800, 0, 566, 720);
panel.setBounds(0, 0, 800, 720);

mapApplet.init();
mapApplet.start();

Platform.runLater(new Runnable() {
@Override
public void run() {
try {
initFX(panel);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
});
} catch (InstantiationException | IllegalAccessException
| ClassNotFoundException e) {
e.printStackTrace();
}
//button.setVisible(false);
catch (Exception e) {
e.printStackTrace();
}
}
private Scene createScene() throws IOException {
root = new Group();
scene = new Scene(root, Color.ALICEBLUE);
Button btn1 = new Button("Connect");
root.getChildren().addAll(btn1);
}

最佳答案

But the problem is, I cannot resolve the problem that javaFX related panel is flashing(repainting so slow) when mouseover a button.

Is there any solution, or will I try to integrate Swing into javaFX? Which will be annoying

.

  • 从未见过,也没有闪烁(不知道如何运行,从此处发布的代码片段进行模拟)

  • 为了获得更好的帮助,请尽快发布 SSCCE/MCVE , short, runnable, compilable, causeed with a.m. and described issue(注意测试和查看 SwingUtilities.invokeLaterPlatform.runLater 的用法)

enter image description here

import java.awt.BorderLayout;
import java.awt.Dimension;
import javafx.application.Platform;
import javafx.embed.swing.JFXPanel;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.scene.paint.Color;
import javax.swing.JApplet;
import javax.swing.JFrame;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;

public class JavaFX_And_Swing extends JApplet {

private final int WIDTH = 300;
private final int HEIGHT = 250;
private static JFXPanel fxContainer;
private static JFXPanel fxContainerTwo;
private static final long serialVersionUID = 1L;

public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");
} catch (Exception e) {
}
JFrame frame = new JFrame("JavaFX embeded in Swing");
frame.setLayout(new BorderLayout(5, 5));
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JApplet applet = new JavaFX_And_Swing();
applet.init();
frame.setContentPane(applet.getContentPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
applet.start();
}
});
}

@Override
public void init() {
fxContainer = new JFXPanel();
fxContainer.setPreferredSize(new Dimension(WIDTH / 5, HEIGHT / 5));
add(fxContainer, BorderLayout.NORTH);
fxContainerTwo = new JFXPanel();
fxContainerTwo.setPreferredSize(new Dimension(WIDTH, HEIGHT));
add(fxContainerTwo, BorderLayout.CENTER);
Platform.runLater(new Runnable() {
@Override
public void run() {
createScene();
createScene2();
}
});
}

private void createScene() {
Button btn = new Button();
btn.setText("Say 'Hello World'");
btn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
System.out.println("Hello World!");
}
});
StackPane root = new StackPane();
root.getChildren().add(btn);
Scene scene = new Scene(root, Color.BLUEVIOLET);
fxContainer.setScene(scene);
}

private void createScene2() {
Button btn = new Button();
btn.setText("Say 'Hello World' Two");
btn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
System.out.println("Hello World!");
}
});
StackPane root = new StackPane();
root.getChildren().add(btn);
Scene scene = new Scene(root, Color.ALICEBLUE);
fxContainerTwo.setScene(scene);
}
}

关于JavaFX 闪烁(最近重新绘制)onmouseover 与集成 Swing,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21329234/

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