GUI设计关闭确认对话框
程序员文章站
2022-05-28 11:36:37
...
使用GUI设计一个关闭确认对话框
%%%%%%%窗口的关闭与打开
h=figure('name','对话框测试','menubar','none')%创建对象
sel=questdlg('确认关闭当前窗口?','关闭确认','Yes','No','No')%创建对话框
switch sel
case 'Yes'
delete(h)
case 'N0'
return
end
上一篇: 用Python写一个中英动态翻译软件