System.Collections.Generic.Dictionary.Remove(Window)

Here are the examples of the csharp api System.Collections.Generic.Dictionary.Remove(Window) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : DragDropAdornerManager.cs
with MIT License
from stride3d

private static void UnregisterWindow([NotNull] Window window)
        {
            window.GiveFeedback -= OnGiveFeedback;
            window.PreviewDragOver -= OnDragOver;
            window.PreviewDragEnter -= OnDragOver;
            window.Closed -= OnWindowClosed;
            WindowToElementsLookup.Remove(window);
        }