C# 窗体自动调整窗口大小
我有一个表单应用程序。里面我有一个 richTextBox。如何使应用程序自动调整富文本框的大小?意味着如果我扩展或最大化窗口,富文本框应该跟随
I have a form app. inside I have a richTextBox. How to make make the app to auto resize the rich textBOx? meaning if I expand or max the window, rich textBox should follow
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用文本框的锚点属性。您可能希望将其设置为所有边,顶部、底部、左侧、右侧。
Use your TextBox's Anchor property. You'll probably want to set it to all sides, Top, Bottom, Left, Right.
如果
RichTextBox
是唯一的控件,您可以将其Dock
属性设置为Fill
。如果它与其他控件共享表单,您可以使用Anchor
属性。如果您需要有关 Visual Studio 中 GUI 布局的更多帮助,请参阅
在 Visual Studio .NET 中设计可调整大小的 Windows 窗体。
If the
RichTextBox
is the only control you can set it'sDock
property toFill
. If it shares the form with other controls you can use theAnchor
property.If you need more help with GUI layout in Visual Studio see
Designing Resizable Windows Forms in Visual Studio .NET.