How to determine if pushbutton/callback is pressed?
29 次查看(过去 30 天)
显示 更早的评论
How do I determine if a callback was pressed in guide GUI?
Say I have 2 Callbacks and
If I press the first Callback, then
function first_Callback(hObject, ..., ...)
var1 = 1; % callback was pressed
function second_Callback(hObject, ..., ...)
if(var1 == 1)
%code block
Thank You!
0 个评论
回答(2 个)
Shameer Parmar
2016-6-10
Hi Jan,
Try for this:
function pushbutton1_Callback(hObject, eventdata, handles)
handles.First = 1;
handles.Second = 0;
clc;
disp('Fist Button was pressed.');
guidata(hObject, handles);
.
function pushbutton2_Callback(hObject, eventdata, handles)
handles.First = 0;
handles.Second = 1;
clc;
disp('Second Button was pressed.');
guidata(hObject, handles);
Once you add this logic and click on respective push button, the two variables handles.First and handles.Second will be created and assign with either 0 or 1 value. You can then use it in your logic to check which push button was pressed.
if (handles.First==1 && handles.Second==0)
disp('Fist Button was pressed.');
elseif (handles.First==0 && handles.Second==1)
disp('Second Button was pressed.');
end
2 个评论
Thanigaivel Raja T
2016-10-31
编辑:Thanigaivel Raja T
2016-10-31
If both push buttons are not pressed, then handles.First will not have been defined. Then error message will be displayed by MATLAB.
Image Analyst
2016-10-31
This does not describe Shameer's code. His code defines handles.First even if only one pushbutton is pressed. So it's not "both" as you said. The only problem would be is if "neither" is pressed. So to avoid that, you should put the following code in the OpeningFcn() function
% Indicate that neither pushbutton has been clicked yet:
handles.First = 0;
handles.Second = 0;
Image Analyst
2016-6-5
Simply set a breakpoint at the first line of code in the callback. It should stop there if you interact with the GUI control.
If you don't know how to do that, please see this link, which will solve nearly every problem anyone might ever have in MATLAB.
2 个评论
Ram
2018-2-20
similar problem. but i dont how to do?... kindly help or any suggestion in my code https://de.mathworks.com/matlabcentral/answers/383546-how-can-i-call-two-push-buttons-from-the-3rd-push-button-in-gui-without-disabling-any-pushbuttons
Image Analyst
2018-2-20
Alternatively, as the first two lines of the callback you can have this:
fprintf('Now in the pushbutton callback.\n');
uiwait(helpdlg('Now in the pushbutton callback.\n'));
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Migrate GUIDE Apps 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!