Why are MATLAB figure windows accessible, but cause MATLAB to hang when I create modal Java dialogs in MATLAB 6.5 (R13)?

1 次查看(过去 30 天)
Why are MATLAB figure windows accessible, but cause MATLAB to hang when I create modal Java dialogs in MATLAB 6.5 (R13)?
I have the following code that creates a MATLAB figure and a Java modal dialog box:
dialog = javax.swing.JDialog(javax.swing.JFrame, logical(1))
figure
dialog.setVisible(logical(1))
With the Java modal dialog open, I am unable to access the MATLAB Desktop, as is expected. However, I am still able to click on any open figure windows. Once I do this, MATLAB freezes and I need to manually kill the process.

采纳的回答

MathWorks Support Team
This is a bug in MATLAB 6.5 (R13) that has been reported to our development staff for further investigation.
One possible workaround is to set the visibility all MATLAB figure windows to 'OFF' before setting your Java modal dialog to be visible:
set(findall(0, 'type', 'figure'), 'visible', 'off')
After the Java dialog has closed, you can set all figures to be visible again:
set(findall(0, 'type', 'figure'), 'visible', 'on')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by