System.Windows.Window.Close C# (CSharp) Method

Close() public method

public Close ( ) : void
return void
		public void Close ()
		{
			Console.WriteLine ("System.Windows.Window.Close (): NIEX");
			throw new NotImplementedException ();
		}

Usage Example

 private void CloseWindow(Window windowToClose)
 {
     if (windowToClose != null)
     {
         windowToClose.Close();
     }
 }
All Usage Examples Of System.Windows.Window::Close