How to edit auto-generated code in App Designer?
68 次查看(过去 30 天)
显示 更早的评论
This question has been asked before, but not satisfactorily. Is there a way to edit the grayed-out text in the code view within App Designer? If not, this is a major drawback to using App Designer, which is otherwise incredibly useful.
3 个评论
Freya H
2018-8-14
Oh yeah I agree, that is a bit annoying. But I guess the general idea is to have the initial design setup in the design view and then have an action happen upon a certain event.
Some object properties,such as visibility, can be set right away though (in the component properties).
回答(2 个)
Hyeonsu Nam
2021-9-3
May you can edit the gray colored area not by code itself, but by inspector browser
like this
1 个评论
zapaiz
2019-7-3
编辑:zapaiz
2019-7-3
I don't think it is possible BUT, there's a cleaner way to do what you want:
If you go to EDITOR > Callback and select UIFigure (the main graphic element) you can create and customize the startupFcn, the callback invoked at the startup of the app.
for example if you have DatePickers (SelectStart and SelectEnd) you can initialize them to today and 10 days ago respectively like this:
function startupFcn(app)
app.SelectStartDatePicker.set('Value', datetime('now') - days(10));
app.SelectEndDatePicker.set('Value',datetime('now'));
end
1 个评论
Robert Cadman
2022-10-21
Thank you! It slightly irritates me that you can't do this in the createComponents function but this will work.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!