Info
此问题已关闭。 请重新打开它进行编辑或回答。
Can I see the code part that corresponds to various app elements?
1 次查看(过去 30 天)
显示 更早的评论
I am wondering if there is a way to find the specific code part that corresponds to various elements on an app user interface. For instance, let's assume we have an app with 4 image planes (using subplot(2,2,1:4)) some sliders that move in accordance to mouse wheel etc. How can I find the exact code parts of those elements? The code that corresponds to each one of the 4 planes and the code that corresponds to the slider that changes with mouse scroll.
3 个评论
Adam
2018-5-16
UI components are class properties. Just search for them in the code and find the callbacks. Things that you create using subplot will exist where you create them. It is entirely up to you where they spread to from there. I don't really understand the question.
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!