显示 AWT/Swing 中的 SWT 模式对话框
使用 Albireo,很容易了解如何从 SWT 显示 Swing 对话框:
private AwtEnvironment awtEnv = AwtEnvironment.getInstance(Display.getCurrent);
...
// call from SWT thread
void showSwingMessageDialog(String msg) {
awtEnv.invokeAndBlockSwt(new Runnable() {
public void run() {
Frame parentFrame = awtEnv.createDialogParentFrame();
JOptionPane.showMessageDialog(parentFrame, msg);
}
}
}
我想从 AWT 线程显示 SWT 对话框,即
// call from AWT thread
void showSWTMessageDialog(String msg) {
???
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定,我是否很好地理解这个问题,但是当您使用 Albireo/SWT_AWT 桥编写程序时,您通常使用 SWT,当您需要时,您可以使用 Swing 进行一些工作(如 Eclipse wiki 上的这个示例 显示).. 所以如果你有你的父母(很可能
Shell
实例)在某些全局属性中,您可以随时随地创建 SWT 对话框。编辑
要阻止 AWT 线程,您可以调用 SwingUtilities 的 rel="nofollow">invokeAndWait() 方法和
Runnable
实例内部显示 SWT 对话框窗口。I'm not sure, if I understand this question well, but when you are writing program with Albireo/SWT_AWT bridge, you use SWT normally and when you need, you can use Swing for some work (as this example on eclipse wiki shows).. So if you have your parent (most probably
Shell
instance) in some global attribute, you can just create SWT dialog whenever and wherever you need..EDIT
For blocking the AWT thread, you could call invokeAndWait() method of
SwingUtilities
and inside theRunnable
instance show the SWT dialog window..