用派生控件替换 Windows.Forms 控件的可靠/简单方法?

发布于 2024-08-10 08:55:56 字数 193 浏览 11 评论 0原文

我没有遵循我自己的最佳实践(仅使用派生控件),我将常规 Windows 窗体控件拖到我的窗体中,将其连接起来并在我的窗体上使用它;-(

现在我需要将该控件更改为派生控件控件(源自同一控件),保留设计者的所有设置是否有可靠/简单的方法来执行此操作(我当前的方法是删除控件,替换为新控件并确保使用与以前的代码的差异。除了类/命名空间/程序集之外没有任何更改)。

I didn't follow my own best practices (use only derived controls), and I dragged a regular Windows Forms control to my form, wired it up and used it on my form ;-(

Now I need to change the control to a derived control (derived from the same control), preserving all the settings from the designer. Is there a reliable/easy way to do this? (my current method is to remove the control, replace with the new control and ensure using differences to previous code that there are no changes other than in the class/namespace/assembly).

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

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

发布评论

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

评论(1

玩心态 2024-08-17 08:55:56

在 Windows 窗体中,只需修复 .designer 文件中的声明和构造就足够简单了。只需更改声明行和构造行以使用 Control 类而不是 System.Windows.Forms.XXX。

一旦您更改了这两行,它应该“正常工作”,就像您使用派生控件一样。

In Windows Forms, it's easy enough to just fix the declaration and construction in the .designer file. Just change the declaration line and construction line to use your Control class instead of System.Windows.Forms.XXX.

Once you change those two lines, it should "just work" as if you used your derived control.

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