How to deinitialize a FrameworkElement?

眉间皱痕 提交于 2019-12-11 03:47:43

问题


We have a class which derives from FrameworkElement and which is not under our control. This class registers eventhandlers in the OnInitialize method.

What is the pattern to properly clean this class up, since FrameworkElement does not provide a counterpart to OnInitialize?

It remains rooted since no part of it removes the EventHandler causing a leak.


回答1:


There's no such thing as "deinitializing". Initialization methods are used when it isn't possible to fully initialize an object in its constructor, because it depends on data that isn't available during construction. In these cases construction is broken in two phases: the first step is executed in a parameterless constructor, the second in an initialization method, like OnInitialize, after the external data becomes available

What you describe is object disposal, which is performed by calling an object's Dispose method. A well-written class should clean up its data, release any external resources and release any event handlers.

Visual elements typically have another step in their lifecycle, handled by the OnLoad/OnUnload methods. The Load step occurs when an element is actually placed in XAML view and connected to the other UI elements. Event handlers should be registered in the OnLoad method and removed in the OnUnload method.

If the element has no Dispose method , you may be able to raise the Unload event to force the cleanup, although this is a bit of a hack:

control.RaiseEvent(new RoutedEventArgs(FrameworkElement.UloadedEvent))



回答2:


Use weak event pattern. In particular, subscribe to events using WeakEventManager implementations (or, better, its generic version WeakEventManager<TEventSource, TEventArgs>, if .NET 4.5 is an option).



来源:https://stackoverflow.com/questions/27546038/how-to-deinitialize-a-frameworkelement

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!