Azzera filtri
Azzera filtri

App designer tie in loops videos?

1 visualizzazione (ultimi 30 giorni)
Stephnie Watson
Stephnie Watson il 16 Nov 2018
Commentato: Stephnie Watson il 19 Nov 2018
Do you know of a good video or explanation on how to connect the input from drop down, check boxes and insert boxes to mean a specific thing that would then be input into another search function part of the code? I can't seem to find anything by googling and Matlab examples are all singles, which would be a lot of unnecessary repeat coding.
So for example, I would want the code to let me know that the city, province and country chosen, with the specific check boxes of water and climate would mean certain terms would be generated, that would then be input into the google search.

Risposte (1)

Cris LaPierre
Cris LaPierre il 17 Nov 2018
Each component has properties that you can access from any callback. For example, if I have a drop down, a check box and an edit box, I could access the selected/entered value in a callback as follows:
% DropDown
value = app.DropDown.Value;
item = app.DropDown.Items(value)
% EditField
value = app.EditField.Value;
% Button
value = app.Button.Value;
% CheckBox
value = app.CheckBox.Value;
Your code can then use these values to create your desired results.
Here's an example of a button that, when pressed, populates a list box (SelectedListBox) with with values from a second list box (ListBox)
% Button pushed function: Button
function ButtonPushed(app, event)
app.SelectedListBox.Items = [app.SelectedListBox.Items app.ListBox.Value];
end
  2 Commenti
Stephnie Watson
Stephnie Watson il 19 Nov 2018
Thanks Cris, I had looked at the link but was still unclear how it all works, which is why I am looking for a video that shows how to incorporate these all together to see a visual of an actual example occuring.

Accedi per commentare.

Categorie

Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by