控件是组件吗?

发布于 2024-10-15 06:40:08 字数 64 浏览 3 评论 0原文

只是术语问题。有些文章提到像Button、Panel、SplitPanel等都是控件。有些称为组件。两者都正确吗?

Just terminology question. Some articles mention that things like Button, Panel, SplitPanel, etc. are controls. Some called components. Is Both correct?

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

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

发布评论

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

评论(5

不必了 2024-10-22 06:40:08

我认为您谈论的不是 Visual Studio,而是 .NET。

System.Windows.Forms.Control 类签名:

public class Control : Component, IDropTarget, ISynchronizeInvoke, IWin32Window, IBindableComponent, IComponent, IDisposable

System.ComponentModel.Component 类签名:

public class Component : MarshalByRefObject, IComponent, IDisposable

因此,控件是一个组件。

I think you're talking not about Visual Studio, but .NET.

System.Windows.Forms.Control class signature:

public class Control : Component, IDropTarget, ISynchronizeInvoke, IWin32Window, IBindableComponent, IComponent, IDisposable

System.ComponentModel.Component class signature:

public class Component : MarshalByRefObject, IComponent, IDisposable

Thus, a Control is a Component.

绝不放开 2024-10-22 06:40:08

控件是一个可视化组件。每个控件都是一个组件,但并非所有组件都是控件。

The Control is a Visual Component. every control is a component but not all the components are controls.

抽个烟儿 2024-10-22 06:40:08

控件是一种组件。

类库也被视为组件。

组件是分布在一个包(即 dll)中的一组(通常相关的)类。

Controls are one kind of component.

Class libraries are also considered components.

A component is a set of (normally related) classes distributed in one package (i.e. a dll).

单身情人 2024-10-22 06:40:08

控件是一个组件;但组件不一定是控件。

A control is a component; but a component is not necessarily a control.

我很OK 2024-10-22 06:40:08

嗯,从视觉上来说,组件通常是控件的子集。只需检查“工具”选项卡,您就会看到一个名为“组件”的部分。

它们是在表单上没有直接视觉表示的控件,例如 ErrorProvider、ImageList、Timer 等...

Well,visually speaking usually components are a subset of controls. Just check the tools tab and you will see one section called components.

They are controls that have not a direct visual representation at the form like an ErrorProvider, an ImageList, a Timer, etc ...

enter image description here

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