如何相对于彼此以及表单本身来组织表单上的控件?

发布于 2024-10-20 06:59:49 字数 202 浏览 0 评论 0原文

我在 MDI Windows 窗体应用程序中有一个子窗体。它有两个控件:一个 ComboBox 和一个 TreeView,最后一个控件位于第一个控件下面。两个控件具有相同的宽度。如何设置它们和表单属性以实现以下目的:

  1. 更改表单大小时,两个控件的宽度必须等于表单的宽度。
  2. TreeView 的高度必须更改以填充表单的所有可用空间。

I have a child form in a MDI Windows Forms application. It has two controls: a ComboBox and a TreeView, with the last one under the first one. Both controls have the same width. How can I set up them and form properties to achieve the following:

  1. When changing the size of the form, a width of both controls must be equal to the width of the form.
  2. The height of the TreeView must be changing to fill all free space of the form.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

黯然#的苍凉 2024-10-27 06:59:50

您可以这样做:

  1. 在表单设计器中,按照您希望的外观布局控件。
  2. 选择 ComboBox,然后设置 Anchor 属性设置为 Top、Left 和 Right
  3. 选择 TreeView 并设置 Anchor 属性到顶部、左侧、右侧和底部

You can do like this:

  1. In the forms designer, layout the controls like you want them to look
  2. Select the ComboBox, and set the Anchor property to Top, Left and Right
  3. Select the TreeView and set the Anchor property to Top, Left, Right, and Bottom
纵情客 2024-10-27 06:59:50

基本上,您需要对接控件。使用Dock 您的两个控件的属性,以找到适合您的要求的“对接”。

下面是一个示例,演示了带有 Dock=TopCombobox 和带有 Dock=FillTreeView

在此处输入图像描述

如果调整表单大小,组合框宽度和TreeView宽度/高度将相应调整大小,以满足您的具体要求。

Basically, you would need to dock your controls. Play with the Dock property of your both controls to find the "docking" which suits your requirements.

Here is an example which demonstrates a Combobox with Dock=Top and TreeView with Dock=Fill:

enter image description here

If you resize the form, the Combobox width and TreeView width/height will be resized accordingly, which suits your specific requirements.

灯角 2024-10-27 06:59:50

这是通过 Anchor 属性完成的。在所有控件(组合框、树视图和用户控件)上正确设置它,它会按照您喜欢的方式拉伸。

Dock 属性类似,但它也会影响位置,甚至在表单设计器中也会将控件“粘合”到其位置。

This is done by the Anchor property. Set it properly on all controls (combobox, treeview and usercontrol) and it will stretch however way you like.

The Dock property is similar, but it also affects location and kinda "glues" the control to its place even in the form designer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文