C# 用户控件工厂

发布于 2024-09-02 15:24:27 字数 237 浏览 2 评论 0原文

假设您有两个扩展UserControl 的类。每个控件都提供一个自定义事件(这可以通过使用接口来完成)。

您希望在奇数天显示其中一个控件,在偶数天显示另一个控件。

您还希望能够将 UserControl 拖放到表单上 (Visual Studio),而无需知道 Control 类型最终是什么。

你是怎么做到的?工厂模式在这里有用吗?

Let's say you have two classes that extend UserControl. Each of the controls provides a custom event (this could be done by using an interface).

You want to display one of the controls in the odd days and the other in the even days.

You also want to be able to drag&drop (Visual Studio) the UserControl on your form without knowing what the Control type will finally be.

How do you do that ? Is the factory pattern useful here ?

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

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

发布评论

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

评论(2

爱她像谁 2024-09-09 15:24:27

我将创建一个添加到表单上的容器控件(并且存在于设计器工具箱中),该控件在内部使用一些工厂来创建要使用的实际控件的实例,然后使用 Dock 将其添加到容器中 设置为填充

I would make a container control that is added on the form (and that is present in the designer toolbox), that internally uses some factory to create an instance of the actual control to use and then adds it to the container with Dock set to Fill.

回眸一遍 2024-09-09 15:24:27

您可以创建第三个用户控件来创建 &根据日期托管用户控件。

但是,这有一种不好的感觉,你能更详细地解释一下你实际上想要做什么吗?

You could make a third usercontrol that creates & hosts the usercontrol depending on the day.

But, this has a bad feeling to it, could you explain more in detail what you actually are trying to do?

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