Dock the command window in app designer

조회 수: 47 (최근 30일)
Kris Hoffman
Kris Hoffman 2021년 1월 25일
답변: Shubham Rawat 2021년 2월 2일
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
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
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!

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by