在winforms生成的.Designer.cs文件中修改Dispose(bool)时,是否需要将Dispose移至主代码文件?
我在 其他 其他 的答案中发现了关于这个问题的不同意见://stackoverflow.com/questions/1052147/how-do-i-extend-a-winforms-dispose-method">问题,但尚未找到直接解决该问题的问题。
是否有必要将 winforms 生成的 .Designer.cs 文件中的 Dispose 方法移至主代码文件,以便设计器不会覆盖我对该方法所做的更改?
I have found mixed opinions regarding this question in answers to other questions, but have not found a question that directly addresses it.
Is it necessary to move the Dispose method, in a winforms generated .Designer.cs file, to the main code file so that the designer will not overwrite changes I have made to the method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,你不会失去它。但是移动它,在没有人看过的文件中无法发现自定义内容。
No, you won't lose it. But move it, the customization isn't discoverable in a file that nobody ever looks at.