how to programmatically close modal figure?

4 次查看(过去 30 天)
Hello,
I have set WindowStyle as modal for waitbar since I wan't to disable the main figure untill the waitbar is Finished. But I am unable to close waitbar, matlab hangs. How can I programmatically close the modal figure?
Thank you.

采纳的回答

Shreeprasad Bhat
Shreeprasad Bhat 2017-4-22
编辑:Shreeprasad Bhat 2017-4-22
I found the solution.
Just before closing figure, set the window style to normal.
h=waitbar(0,'Please wait...','WindowStyle','modal');
.
.
.
set(h,'WindowStyle','normal');
close(h);

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by