So, I've never done a sizable WPF project before now, but this one has me wondering; What's up with WPF classes not implementing IDisposable
? By comparison, all of the UI elements in Windows Forms implement IDisposable
, to assure they get rid of the underlying handles and such.
I think the same Windows objects are under the covers there, and those resources have to be released; so, how is WPF doing that?
Is there anything I need to be doing with my WPF Window objects beyond Close()
ing them?