copy the item in drop-down list of app designer

1 Ansicht (letzte 30 Tage)
Yu Li
Yu Li am 29 Dez. 2018
Bearbeitet: Yu Li am 4 Jan. 2019
Hi:
is there any way to copy the item in drop-down list of app designer?
Thanks!
Yu
  2 Kommentare
Alok Nimrani
Alok Nimrani am 2 Jan. 2019
Hi Yu,
Is it that you want to make a duplicate item by copying an existing one from the drop-down list? If not, could you please elaborate on your use-case and also the end goal that you are trying to achieve?
Thanks,
Alok
Yu Li
Yu Li am 2 Jan. 2019
Hi:
thanks for your reply.
the app will generate search over several folders and display the folder that possible contains the best solution. then these folder names will be shown in the drop down list.
I want to copy these folder path and then use 'cd' to go to these folders.
Thanks!
Yu

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Alok Nimrani
Alok Nimrani am 4 Jan. 2019
Hi Yu,
In order to get the folder names displayed in the drop down list, you can create a cell array containing these items as follows:
>> nameList = app.DropDown.Items;
where 'DropDown' is the name of the drop down object that you want to use.
In addition, you can get only the current selected value as follows:
>> currentValue = app.DropDown.Value;
Hope this helps.
Regards,
Alok
  1 Kommentar
Yu Li
Yu Li am 4 Jan. 2019
Bearbeitet: Yu Li am 4 Jan. 2019
thanks for your reply. yes, this is a way to do that, but what I want is:
  1. move the mouse pointer to that drop-down list.
  2. right-click and there appears a 'copy' selection.
this step is like what we copy-paste file in a windows system, which may make the app more interactive.
Thanks!
Yu

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by