About 40,200 results
Open links in new tab
  1. listdlg - Create list selection dialog box - MATLAB - MathWorks

    [indx,tf] = listdlg('ListString',list) creates a modal dialog box that allows the user to select one or more items from the specified list. The list value is the list of items to present in the dialog box.

  2. ListBox - List box UI component - MATLAB - MathWorks

    A list box UI component allows an app user to select an option from a list. Use the ListBox object to modify the appearance and behavior of a list box after you create it. Creation

  3. uilistbox - Create list box component - MATLAB - MathWorks

    Create a list box and UI axes with some plotted data in the grid layout manager. Write a callback function named listBoxValueChanged that updates the colormap for the UI axes, and assign the function to the ValueChangedFcn callback property of the list box.

  4. ListBox Component in MATLAB GUI - GeeksforGeeks

    Mar 17, 2022 · List boxes are user interface elements that display items in a list. A list box’s appearance and behavior are controlled by its properties. To refer to a specific object or property. Example 1: ef = uieditfield(fig,'numeric',... lbox = uilistbox(fig,... 'Items', {'GFG1', 'GFG2', 'GFG3', 'GFG3'},... 'ItemsData', [0, 25, 40, 100],...

  5. Listbox multiple selection matlab - Stack Overflow

    Nov 29, 2015 · The Value property stores the row indexes of currently selected list box items, and is a vector value when you select multiple items. After any mouse button up event that changes the Value property, MATLAB evaluates the list box's callback routine.

  6. GitHub - johwing/matlab_menu_gui: A powerful but simple to …

    Creates an automatically sized gui menu at the center of the screen with the supplied figure title and waits for user input. 7 different types of menu styles are available: Push-button *, Radio-button *, Popup-menu/list *, Check box ^, List box ^, Slider and Text box.

  7. matlab - How to get selected values from listbox within a dialog …

    May 6, 2014 · Does anyone have an idea on how to get the selected values from the listbox in the dialog box? I think you need to use s instead. get(hObject,'value') would get value of the pushbutton status rather. The index of the selected value will be s.

  8. Chapter 7: Graphical User Interface – A Guide to MATLAB for ME …

    Graphical User Interfaces, or GUIs, are tools that improve how the user can interact with a code by modifying the appearances of inputs, messages, or other notices. As a result, users can type inputs or interact with codes through pop-up windows instead of using the command window.

  9. How can I select multiple items from a GUI listbox?

    To select multiple items in a List box the Max and Min properties must be defined. If Max - Min > 1, then list boxes allow multiple item selection. If Max - Min <= 1, then list boxes do not allow multiple item selection.

  10. Listbox layout customization - Undocumented Matlab

    Nov 13, 2013 · Customizing listbox/combobox items – Matlab listboxes can be customized using custom Java cell-renderers. ... Listbox selection hacks – Matlab listbox selection can be customized in a variety of undocumented ways. ...

  11. Some results have been removed