public WindowShowStateChangedEventArgs(IntPtr windowHandle, Win32.ShowWindowCommands previousShowState, Win32.ShowWindowCommands showState)
 {
     WindowHandle      = windowHandle;
     PreviousShowState = previousShowState;
     ShowState         = showState;
 }
Esempio n. 2
0
 public WindowInfo(Size clientAreaSize, Point clientAreaScreenLocation, Win32.ShowWindowCommands showState)
 {
     ClientAreaSize           = clientAreaSize;
     ClientAreaScreenLocation = clientAreaScreenLocation;
     ShowState = showState;
 }