Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WPFページが閉じたときに、占有されているすべてのメモリをすぐに解放したい
ガイドしてください
確実にしたい場合は、close イベントを処理できます。
<Window Closing="Window_Closing">
その後:
private void Window_Closing(object sender, CancelEventArgs e) { //Free resources, close files, sockets, connections, etc. //Calling Dispose method where possible }
希望が役立ちます!