Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How does the figure window show a photo and close itself in matlab gui ?

2 ビュー (過去 30 日間)
Tugba Ergin
Tugba Ergin 2019 年 1 月 25 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
What code should I use to self-close?

回答 (1 件)

Rik
Rik 2019 年 1 月 25 日
Use this in a callback:
close(gcbf)
Example:
f=figure(1);clf(1)
uicontrol('parent',f,...
'units','normalized',...
'position',[1/3 1/3 1/3 1/3],...
'String','Close me!',...
'Callback','close(gcbf)')

この質問は閉じられています。

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by