在Swing JFrame上隐藏和显示JFXPanel

时间:2012-12-04 10:38:36

标签: java swing webview javafx-2 javafx

我想在swing中隐藏和显示javaFx应用程序中的FXPanel控件

我想点击一个按钮,FXPanel控件应该被隐藏,点击其他控件时应再次看到它被隐藏不再可见。

使用以下代码。

public class abc extends JFrame
{
JFXPanel fxpanel;
Container cp;
public abc()
{
cp=this.getContentPane();
cp.setLayout(null);
JButton b1= new JButton("Ok");
JButton b2= new JButton("hide");
cp.add(b1);
cp.add(b2);
b1.setBounds(20,50,50,50);
b2.setBounds(70,50,50,50);
b1.addActionListener(this);
b2.addActionListener(this);
fxpanel= new JFXPanel();
cp.add(fxpanel);
fxpanel.setBounds(600,200,400,500);
}

public void actionPerformed(ActionEvent ae)
{ 
 if(ae.getActionCommand().equals("OK"))
 {
fxpanel.setVisible(true);
 }
   if(ae.getActionCommand().equals("hide"))
 {
 fxpanel.hide();
 }

 Platform.runLater(new Runnable())
{

 public void run()
 {
  init Fx(fxpanel);
  }}
 );
 }
 private static void initFX(final JFXPanel fxpanel) 
{
  Group group = ne Group();
  Scene scene= new Scene(group);
  fxpanel.setScene(scene);
  WebView webview= new WebView();
  group.getChildren().add(webview);
  webview.setMinSize(500,500);
  webview.setMaxSize(500,500);
  eng=webview.getEngine();
  File file= new File("d:/new folder/abc.html");
  try
 {
 eng.load(file.toURI().toURL().toString());
 }
catch(Exception ex)
{
}
}
public static void main(String args[])
{
 abc f1= new abc();
 f1.show();
}
}

1 个答案:

答案 0 :(得分:1)

除了一些拼写错误之外,您的代码存在多个问题:

1)如果您使用ActionEvent#getActionCommand来确定单击了哪个按钮,则必须首先在按钮上设置action命令属性。动作命令与按钮的文本不同。

2)您正在添加两个具有相同坐标的按钮,因此不会显示。

3)不要使用不推荐的hide() - 隐藏JFXPanel的方法,使用setVisisble(false)

此外,还有一些一般性的指示:

4)不要对普通用户界面使用空布局。如初。

5)阅读java命名约定。这不仅仅是我的挑剔,它将帮助您更好地了解其他人的代码,并帮助其他人维护您的代码。

6)通过SwingUtilities#invokeLater调用从EDT显示挥杆组件的代码,就像使用Platform类一样。像你一样从主线程调用swing会在大多数情况下工作,但会偶尔出现难以跟踪的错误。