How can I add a progress dialog box inside of a GUI axis?
12 次查看(过去 30 天)
显示 更早的评论
I'd like to have a progress dialog box be contained inside of a GUI axis, instead of in an external figure tab.
A GUI axis is a uifigure, and since one of the inputs for 'uiprogressdlg' is a figure, I thought the following would work:
% app.prog is the uifigure in question
% app.prog = uiaxes(app.UIFigure);
uiprogressdlg(app.prog,'Title','Please Wait','Message','any message.....');
However, doing this does not work, and I get the following error message:
% Error using matlab.ui.dialog.ProgressDialog (line 44)
% Invalid or deleted figure handle. First argument must be a valid figure handle
Does anyone have any idea why this would not work, maybe I am missing something very simple.
Appreciate anyone's help!
2 个评论
Tommy
2020-6-18
"A GUI axis is a uifigure"
UI axes created by the uiaxes() function are not the same as figures created by the uifigure() function. If app.UIFigure is your figure, you can pass that to uiprogressdlg, and the dialog box should show within your figure. I'm not sure you can do any better without creating your own progress dialog box.
回答(1 个)
Jemima Pulipati
2020-7-22
According to the documentation, uiprogressdlg() accepts figure created from uifigure() as an argument.
But according to your code you are trying to pass a UIAxes object as an argument hence you are receiving the error "Invalid or deleted figure handle". So you can use a figure handle as an argument to uiprogressdlg().
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop uifigure-Based Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!