hi, please how can I create a question dialog to leave the interface when I click in the red button .thank you for help
1 回表示 (過去 30 日間)
古いコメントを表示
回答 (1 件)
MBD4FUN
2016 年 4 月 8 日
編集済み: MBD4FUN
2016 年 4 月 8 日
Is this what you want? (note: different look and feel for Windows OS)
button = questdlg('Are you sure to quit?','Question','Yes','No','No');
switch button
case 'Yes',
quit
case 'No',
quit cancel;
end
A similar example is also provided by the Matlab help documentations. Have a look at it by typing "help quit" and hit enter at the Matlab Command Window. Sometimes do a little research by using the Matlab help documents could solve many problems.
Cheers, MBD4FUN
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!