How to select only two items from the list box?

7 次查看(过去 30 天)
I want to select only two items from a list box. The list box should not accept more than two selected items.
Please provide an example for this.

采纳的回答

Matthew Simoneau
Matthew Simoneau 2011-1-20
You can accomplish this by reacting to the selection with a callback and removing the new selection if there are too many.
Create a callback function like this one:
function twoOnly(h,~)
oldValues = get(h,'UserData');
newValues = get(h,'Value');
if numel(newValues) > 2
newValues = oldValues;
end
set(h,'Value',newValues)
set(h,'UserData',newValues)
end
Here's an example of how to use it:
close all;
u = uicontrol( ...
'style','listbox','Max',2,'Position',[10 10 100 100], ...
'String',{'one','two','three','four','five'}, ...
'Callback',@twoOnly)
Note that the 'Max' property with a value of "2" has nothing to do with the limit of two selections. For more information, see the uicontrol reference page.
  1 个评论
Joe S
Joe S 2019-10-24
Works great, tested using both the CTRL and SHIFT button multl-select. Note: If using GUIDE for a GUI, you'll likely need to change "h" to "hObject" and remove "function twoOnly(h,~)"

请先登录,再进行评论。

更多回答(1 个)

Walter Roberson
Walter Roberson 2011-1-20
There is no (documented) MATLAB mechanism for restricting the number of multi-selected items in a listbox. Your callback function will need to detect the situation and decide what to do, such as setting the Value property to only reflect the first (or last) two of the chosen values, or popping up an error dialog.

类别

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