0

I want to find a solution that pauses the GUI that I created using App Designer in MATLAB.

I mean exactly like uigetfile(), that when you run it you can’t reach the main GUI windows until you close the uigetfile() window.

I need a way to pause my first GUI in the background while my second GUI is in front.

Cris Luengo
  • 55,762
  • 10
  • 62
  • 120

1 Answers1

0

You should set the WindowStyle property of the second figure window to 'modal'. See the documentation for this property.

Cris Luengo
  • 55,762
  • 10
  • 62
  • 120