In a GUIDE, is it possible to reduce the number of button callback functions?

1 次查看(过去 30 天)
For a GUIDE with 2 buttons, both calling the same function but with different function-inputs. Eg:
function radiobutton1_Callback(hObject, eventdata, handles)
if get(hObject,'Value'), disp('A'); end
function radiobutton2_Callback(hObject, eventdata, handles)
if get(hObject,'Value'), disp('B'); end
Is it possible to call the same function with different inputs like this:
function radiobutton_ALL_Callback(hObject,str)
if get(hObject,'Value'), disp(str); end
Avoid copy/paste is the purpose.

采纳的回答

Walter Roberson
Walter Roberson 2013-3-24
GUIDE will not want to do this. GUIDE puts its own callback string in that fetches the handles and then calls the real callback under the assumption that it will use object / event / handles as the calling sequence. I have not used GUIDE enough to know whether you can override GUIDE for this purpose.
  1 个评论
yosey
yosey 2013-3-24
Thank you. I guess i shouldn't bungle in GUIDE standards.
I'll write the 'str' to UserData property or try assignments with tag, string and style.

请先登录,再进行评论。

更多回答(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