Dock the command window in app designer
35 次查看(过去 30 天)
显示 更早的评论
Why can't I dock the command window in the app designer? Right now to have proper access to my app and all debugging I literally need 3 screens. 1 for app designer, 1 for the app itself, and 1 for the command window/workspace.
OR. Why can't the app designer have its own command window?
1 个评论
Adam Danz
2021-1-25
编辑:Adam Danz
2021-1-25
UIFigures contain the DockControls and WindowStyle properties which are needed to dock figures but changing their property values is not supported as of r2020b. But since those properties exist, that might indicate that they will be supported in the future which will be 1 less window for you.
The future solution that doesn't work now would be
app.UIFigure.DockControls = 'on'; % not supported as of r2020b
app.UIFigure.WindowStyle = 'docked'; % not supported as of r2020b
回答(1 个)
Shubham Rawat
2021-2-2
Hi Kris,
Currently this feature is not available in the latest version of MATLAB. This issues is brought to the notice of the developer and it might be considered in future releases of MATLAB.
As a workaround you can refer to the below links
Hope this Helps!
0 个评论
另请参阅
类别
在 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!