multiple actions following @(src,event) in uicontrol

조회 수: 12 (최근 30일)
feynman feynman
feynman feynman 2024년 3월 10일
댓글: Voss 2024년 3월 10일
How to add another action or function to the following
Button=uicontrol('Style','pushbutton', 'String','pause','Position',[1800 60 100 100], 'Callback',@(src,event)continue);
so that it becomes sth like
Button=uicontrol('Style','pushbutton', 'String','pause','Position',[1800 60 100 100], 'Callback',@(src,event){continue,close});

채택된 답변

Voss
Voss 2024년 3월 10일
Define a function that has whatever code in it you want.
Then make that function the button's callback:
Button=uicontrol('Style','pushbutton', 'String','pause','Position',[1800 60 100 100], 'Callback',@(src,event)your_function);
  댓글 수: 4
feynman feynman
feynman feynman 2024년 3월 10일
perfect, thanks
Voss
Voss 2024년 3월 10일
You're welcome!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by