how to open another gui from existing gui using push button ?
古いコメントを表示
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
採用された回答
その他の回答 (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 件のコメント
ElizabethR
2016 年 6 月 18 日
Linda Yakoubi
2018 年 4 月 20 日
編集済み: Linda Yakoubi
2018 年 4 月 20 日
didn'T work ... :/
Thiyaga Raj
2018 年 10 月 2 日
Nice, It Works
Bachtiar Muhammad Lubis
2018 年 10 月 29 日
Will it run the .fig and .m files of XYZ by type XYZ; ?
カテゴリ
ヘルプ センター および File Exchange で Interactive Control and Callbacks についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!