how to open another gui from existing gui using push button ?
11 ビュー (過去 30 日間)
古いコメントを表示
ElizabethR
2016 年 6 月 17 日
コメント済み: Bachtiar Muhammad Lubis
2018 年 10 月 29 日
i have to gui, the main gui and the sub gui. I want to open the sub gui from main gui using push button ( guide ). How to make it ? thank you
0 件のコメント
採用された回答
その他の回答 (1 件)
Shameer Parmar
2016 年 6 月 17 日
Lets consider you have 'ABC' is main GUI and 'XYZ' is sub GUI and 'OK' is the push button of GUI ABC
then in callback of OK push button of GUI ABC, simply put..
XYZ; % this command is to open the new GUI
close(ABC); % this command is to close the existing GUI
4 件のコメント
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!