当第二个 MATLAB GUI 在前面时如何暂停我的第一个 MATLAB GUI
How to pause my first MATLAB GUI while the second one is in front
我想找到一个解决方案来暂停我在 MATLAB 中使用 App Designer 创建的 GUI。
我的意思和 uigetfile()
完全一样,当你 运行 它时你无法到达主 GUI windows 直到你关闭 uigetfile()
window.
我需要一种方法来在后台暂停我的第一个 GUI,而我的第二个 GUI 在前面。
您应该将第二个数字window的WindowStyle
属性设置为'modal'
。参见 the documentation for this property。
我想找到一个解决方案来暂停我在 MATLAB 中使用 App Designer 创建的 GUI。
我的意思和 uigetfile()
完全一样,当你 运行 它时你无法到达主 GUI windows 直到你关闭 uigetfile()
window.
我需要一种方法来在后台暂停我的第一个 GUI,而我的第二个 GUI 在前面。
您应该将第二个数字window的WindowStyle
属性设置为'modal'
。参见 the documentation for this property。