Hide the uifigure window for uiprogressdlg / I want to hide the uifigure window with only uiprogressdlg left.

11 次查看(过去 30 天)
fig = uifigure("WindowStyle",'modal',"Interruptible","on");
d = uiprogressdlg(fig,"Cancelable",'on',...
'Indeterminate','on');
I want to hide the figure window with only uiprogressdlg left.
I want ...
How can I do?

回答(1 个)

Abhas
Abhas 2025-6-11
To display only the "uiprogressdlg" and hide the parent "uifigure", we can follow the below method:
fig = uifigure(...);
d = uiprogressdlg(fig, ...);
fig.Visible = 'off'; % Hide the underlying figure
drawnow; % Ensure UI updates
close(d);
fig.Visible = 'on'; % Show it again if needed
This quickly removes the figure window, leaving the progress dialog visible.
You can also refer to the below MATLAB Answers post to know more alternatives regarding the same: https://www.mathworks.com/matlabcentral/answers/498896-how-to-control-ui-progress-dialog-box-uiprogressdlg-size-and-position
I hope this helps!

类别

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

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by