Windows 表单设计视图的底部 space 是什么?
What is the bottom space on the Windows Forms design view?
我正在尝试了解 Windows 表格申请。现在,当我创建数据集、绑定源、Table 适配器时。我注意到它们出现在设计视图的底部。我的问题是:那个部分是什么,里面有什么?
winforms 设计器的底部用于非UI 元素。 class后面的字段一样创建/生成的东西,并没有添加到实际视图中。
此部分通常对应于 Form 中的非可视元素,但仍与 Form 相关,例如 Timer。
由于它们是非视觉的,因此将它们与视觉元素一起放在设计器中没有意义,但它们仍然需要在设计器中以便设计器在设置它们的值时有用。
来自MSDN:
Non-visual components added to the Windows Forms Designer are placed on the Component Tray, located below the design surface, so that they are easily accessible without cluttering the visual design space.
我正在尝试了解 Windows 表格申请。现在,当我创建数据集、绑定源、Table 适配器时。我注意到它们出现在设计视图的底部。我的问题是:那个部分是什么,里面有什么?
winforms 设计器的底部用于非UI 元素。 class后面的字段一样创建/生成的东西,并没有添加到实际视图中。
此部分通常对应于 Form 中的非可视元素,但仍与 Form 相关,例如 Timer。
由于它们是非视觉的,因此将它们与视觉元素一起放在设计器中没有意义,但它们仍然需要在设计器中以便设计器在设置它们的值时有用。
来自MSDN:
Non-visual components added to the Windows Forms Designer are placed on the Component Tray, located below the design surface, so that they are easily accessible without cluttering the visual design space.