필터 지우기
필터 지우기

How to get only one checkbox that can be checked

조회 수: 16 (최근 30일)
Yuli Hartini
Yuli Hartini 2017년 4월 27일
댓글: Hamza Kayani 2021년 6월 13일
I use some checkbox in gui (checkbox A, B, C). How to get only one checkbox that can be checked. If I check the checkbox B, then the selected checkbox B, then I changed my mind want to check the checkbox A, then the selected checkbox A. Thank you
  댓글 수: 1
Hamza Kayani
Hamza Kayani 2021년 6월 13일
Although what you are looking for is specifically in domain of radio buttons however, there is a way around when using check boxes as well. I have discovered a cool way to do so.
Assuming you have three check boxes, head over to the callback function of the first check box and paste the following if-else statement:
function checkbox1_Callback(hObject, eventdata, handles)
if get(handles.checkbox1,'value')
set(handles.checkbox2,'Enable','off')
set(handles.checkbox3,'Enable','off')
else
set(handles.checkbox2,'Enable','on')
set(handles.checkbox3,'Enable','on')
end
%%%%%%%%%%
Now do the same with the callbacks of other two checkboxes but change the tag or name of the checkboxes accordingly. This way, the user can only check one checkbox at a time while the remaining checkboxes will be disabled.

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

답변 (1개)

Jan
Jan 2017년 4월 27일
편집: Jan 2017년 4월 27일
Please do not ask a question twice.
  댓글 수: 1
Margareta Drozdikova
Margareta Drozdikova 2018년 2월 25일
Hi, try this. For example, I have two checkboxes (checkbox1 and checkbox2). In the first:
if true
% code
end
handles.value=get(handles.checkbox1,'Value');
if handles.value==1 %%it means, is checked
set(handles.checkbox2,'Visible','off')
else
set(handles.checkbox2,'Visible','on')
end
So, If I checked the first, the second is invisible, write it in the second too

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

카테고리

Help CenterFile Exchange에서 App Building에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by