组件也最大化
我有一个 Windows 窗体应用程序,上面有一个 RichTextBox,如下所示: 窗口示例 http://img687.imageshack.us/img687/692/window.png< /a>
在这个大小下一切都可以,但是如果用户最大化或调整窗口大小,RichTextBox 保持相同的大小,但是如何也调整 RichTextBox 的大小呢?
I have a Windows Forms application that on it I have a RichTextBox, like this:
Window Example http://img687.imageshack.us/img687/692/window.png
At this size it's all ok, but if the user maximaze or resize the window, the RichTextBox stays at the same size, but how to resize the RichTextBox too?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有两种选择:对接和锚定。在这种简单的形式中,锚可能是最简单的。只需选择该控件,然后将“锚点”属性调整为“上”、“左”、“右”和“下”。
此外,对接和锚定的行为也会有所不同。选择最适合您的一种。
There are two options, docking and anchoring. In this simple form, an anchor is probably easiest. Just select the control, and adjust the Anchor property to Top, Left, Right, and Bottom.
Also, docking and anchoring will behave differently. Choose the one that works best for you.
您可以将其停靠到形式。
You can dock it to the form.
在这种情况下,正如达林·季米特洛夫所说,对接就可以了。在更复杂的布局中,您可以设置锚点。例如,这可以让控件相对于右边框而不是左边框移动。
In this case, as Darin Dimitrov said, docking is fine. In more complex layouts, you can set the anchor. That lets controls move relative to the right border instead of the left, for example.