Effacer les filtres
Effacer les filtres

matlab guide tool

5 vues (au cours des 30 derniers jours)
bala k
bala k le 25 Mar 2011
matlab gui exit button code..

Réponse acceptée

Jan
Jan le 25 Mar 2011
Ah, well, there is a standard answer for GUI questions: Please inspect the examples in Matt Fig's FEX: GUI-Examples
  1 commentaire
Jan
Jan le 26 Mar 2011
@Matt: Thanks. Good work.

Connectez-vous pour commenter.

Plus de réponses (3)

Jan
Jan le 25 Mar 2011
Let me guess what you want - although wild mass guessing is an inefficient counterproductive anti-pattern (see Wiki: AntiPattern)
uicontrol('Style', 'pushbutton', ...
'String', 'Exit', ...
'Position', [10, 10, 120, 22], ...
'Callback', @myExit, ...
'FontName', 'Helvetica');
function myExit(ObjH, EventData)
FigH = ancestor(ObjH, 'figure');
set(FigH, 'DeleteFcn', '', ...
'CloseRequestFcn', '');
delete(FigH);

Matt Fig
Matt Fig le 25 Mar 2011
Is there a question in there somewhere?

Seth DeLand
Seth DeLand le 25 Mar 2011

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by