在不改变内容大小的情况下调整 GUI 中的面板大小 (MATLAB)
有谁知道如何在 gui 编辑器(指南)中更改面板的大小而不更改内容的大小?目前,如果我改变面板的大小,我必须花费三倍的时间来改变内容的大小,这真的很痛苦。
谢谢 詹姆斯
Does anyone know how to change the size of a panel in the gui editor (guide) without changing the size of the contents? At the moment, if I change the size of the panel, I have to spend three times as long changing the size of the contents, and its a real pain.
Thanks
James
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
GUI 组件(例如按钮)仅在您调整 GUI 大小时(如果其单位设置为“标准化”)才会调整大小。在属性检查器中将单位设置为字符,应该没问题(您可以使用属性检查器同时编辑多个组件)。
GUI components, such as buttons are only resized when you resize the GUI if their units are set to 'normalized'. Set the units to characters in the property inspector, and you should be fine (you can use the property inspector to edit multiple components at the same time).
要使面板内的文本自动调整大小,请将 fontUnits 属性设置为“标准化”。
To make the text inside a panel resize automatically, set the fontUnits property to 'normalized'.