Effacer les filtres
Effacer les filtres

Display information when ticking the checkbox in app designer.

19 vues (au cours des 30 derniers jours)
Yen
Yen le 25 Mar 2023
Déplacé(e) : Adam Danz le 27 Mar 2023
hi, I'm having a little problem: how to click on the check box, the parameters like Size , Color.. will appear on the screen.
Please help me and thanks a lot
  2 commentaires
Adam Danz
Adam Danz le 25 Mar 2023
You must assign a ValueChangedFcn to the checkbox to react when users check or uncheck the box.
Within the ValueChangedFcn, you can turn off/on the Visible property of the Size and Color objects based on the Value returned within the callback function.
Yen
Yen le 26 Mar 2023
I wrote like that and not sure if it's correct. Can you help me go to the next part?

Connectez-vous pour commenter.

Réponse acceptée

Adam Danz
Adam Danz le 26 Mar 2023
Déplacé(e) : Adam Danz le 27 Mar 2023
  1. See this answer (Step 3) to learn how to add a ValueChangedFunction. This will add a callback function in your app's code. https://www.mathworks.com/matlabcentral/answers/503673-app-designer-create-a-discrete-slider#answer_414023
  2. The Callback function will have 2 inputs. You can get the value of the checkbox from the first input using something like value=app.Checkbox.Value
  3. If the Value is true, then you should turn on the visible properties of the objects you want to control. app.OBJECT.Visible=true, where OBJECT is the handle to whatever object you're targetting. If the Value is false, set visible to false.
  1 commentaire
Yen
Yen le 27 Mar 2023
Déplacé(e) : Adam Danz le 27 Mar 2023
ohh i solved the problem, thanks a lot <3

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Specifying Target for Graphics Output dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by