issues about app design
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
hello, i have a following problem, the edit area of the code view seems frozened, it only force me to edit within the area which marked with white background, when i want edit to other area, no any respond, how to handle this.
1 commentaire
Réponse acceptée
VBBV
le 24 Mai 2024
function DropDown(app,event)
4 commentaires
VBBV
le 24 Mai 2024
ok, @wenchao zhang, It seems you have added a function for ValueChangedFcn property for your GUI component i.e. dropdown. You can only edit it the Design Mode. Switch to that mode and select the GUI component and/or right click the item and modify the name., Then it will allow you to edit the callback function name. Ensure that callback name matches exactly in the app.
Plus de réponses (1)
Adam Danz
le 24 Mai 2024
> the edit area of the code view seems frozened, it only force me to edit within the area which marked with white background
This is by design in App Designer. App Designer creates your app as a MATLAB class viewable in Code View where you can add properties and method functions but you cannot change the gray sections directly from within Code View.
You can change callback function names that are in the gray sections. In Code View, go to Code Browser (left panel) > Callbacks tabs, and right-click on the callback function name, then select "Rename".
For more information, see Manage Code in App Designer Code View
2 commentaires
Adam Danz
le 28 Mai 2024
From the design view, right click on the "uifigure" name in the right pannel Component Browser and select "rename".
Voir également
Catégories
En savoir plus sur Develop Apps Using App Designer 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!