public void Command(Key key1, Key key2)
        {
            Focuser.FocusByHandle(Window.Handle, WindowMode.Restore);

            SendKeysInterop.PressKey(Window.Handle, key2);
            SendKeysInterop.PressKey(Window.Handle, key1);
            //SendKeysInterop.ReleaseKeyUp(Window.Handle, key2);
        }
 public void Command2(Key key)
 {
     Focuser.FocusByHandle(Window.Handle, WindowMode.Restore);
     SendKeysInterop.SendCtrlC(Window.Handle);
     //SendKeysInterop.ReleaseKeyUp(Window.Handle, key2);
 }
 public void Command(Key key)
 {
     Focuser.FocusByHandle(Window.Handle, WindowMode.Restore);
     SendKeysInterop.PressKey(Window.Handle, key);
 }