WPF 中的路由事件是否较弱
WPF 中的路由事件是否存储对附加到它们的处理程序的强引用?
Does routed events in WPF store strong reference to the handler that is attached to them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
WPF 中的路由事件是否存储对附加到它们的处理程序的强引用?
Does routed events in WPF store strong reference to the handler that is attached to them?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
如果控件作者实现了 WeakEvent 模式,那么是的。 我相信库存控制使用这种模式。
更新:他们实际上没有。 以下是有关此问题和其他潜在性能问题的参考:
优化WPF应用程序性能
以下是弱事件的参考:
弱事件模式
HTH
Colby Africa
If the control author implemented the WeakEvent pattern then yes. I believe the stock controls use this pattern.
UPDATE: They in fact do NOT. Here is a reference on this and other potential performance problems:
Optimizing WPF Application Performance
Here is a reference on weak events:
Weak Event Patterns
HTH
Colby Africa