用派生控件替换 Windows.Forms 控件的可靠/简单方法?
我没有遵循我自己的最佳实践(仅使用派生控件),我将常规 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 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.