select one item between two List Box

5 visualizaciones (últimos 30 días)
Josep Llobet
Josep Llobet el 13 de Sept. de 2021
Comentada: Josep Llobet el 14 de Sept. de 2021
Hi there,
I'm designing an App with MATLAB App designer. I have two Box List, with different items in them. I want the user could select just in a Box List or in a other, but not have two element selected in the two Box List.
I'm looking something like that: (image modified manually, it is not the program)
Thank you!!

Respuesta aceptada

Dave B
Dave B el 13 de Sept. de 2021
Editada: Dave B el 13 de Sept. de 2021
How about just using the callback of one to deselect the other:
% Set up some example listboxes:
u = uifigure;
lsta = uilistbox(u,'Items',{'Cat' 'Dog'});
lstb = uilistbox(u,'Items',{'Monkey' 'Horse'});
lsta.Position(2) = sum(lstb.Position([2 4]));
% initial state
lstb.Value = {};
% Changing value of lsta deselects lstb (and vice versa)
lsta.ValueChangedFcn = @(~,~)set(lstb,'Value',{});
lstb.ValueChangedFcn = @(~,~)set(lsta,'Value',{});
  1 comentario
Josep Llobet
Josep Llobet el 14 de Sept. de 2021
That's it
I just desselect the value of one List Box or the other, when the other or one is selected.
% Desseleccionar modificacions guardades
app.ModificacinsguardadesListBox.Value = {};
Thank you @Dave B!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by