Prizm.Main.WinApi.ShowToFront C# (CSharp) Method

ShowToFront() public static method

public static ShowToFront ( IntPtr window ) : void
window System.IntPtr
return void
        public static void ShowToFront(IntPtr window)
        {
            ShowWindow(window, SW_SHOWNORMAL);
            SetForegroundWindow(window);
        }
    }