필터 지우기
필터 지우기

listbox cannot make it select single or none, it has to be single or multiple.

조회 수: 3 (최근 30일)
Hi,I am using listbox to select item.
The aim is to select only one, or no select.
I set min to 0 and max to 1, but the ui does not allow select none.
If I set min to 0 and max to 2, now the ui can select none, but also enables multiple select.
% not allow select none.
figure;uicontrol('Style','listbox',...
'String',{'rr','tt','gg'},...
'position',[10,20,100,200],...
'min',0,...
'max',1)
% allow select none, but also allow multiple select
figure;uicontrol('Style','listbox',...
'String',{'rr','tt','gg'},...
'position',[10,20,100,200],...
'min',0,...
'max',2)

채택된 답변

Simon Chan
Simon Chan 2023년 2월 26일
To my understanding, multiple select does not allow select none, it has automatically select the first one unless you assign some other value in its 'Value' properties.
As a workaround, you can assign an empty item in the first selection and the listbox will automatically select the first one unless the user select some other item.
By doing that, the default selection, which is the empty one, can simulate select none in your case.
figure;uicontrol('Style','listbox',...
'String',{'','rr','tt','gg'},... % Assign an empty one as the first selection
'position',[10,20,100,200],...
'min',0,...
'max',1)
  댓글 수: 1
raym
raym 2023년 2월 26일
multiple select indeed could select none by Ctrl-Click.
The .Value will return [] if select none.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by