public EmulatorWindowsPhoneDeviceController(string target)
 // this name should work for both English and non-English SDKs
 // e.g. Windows Phone Emulator
 // e.g. Windows Phone Emulator(DE)
     : base(target)
 {
     DisplayInputController = new WindowsPhoneWindowsEmulatorDisplayInputController();
 }
 public EmulatorWindowsPhoneDeviceController()
     // this name should work for both English and non-English SDKs
     // e.g. Windows Phone Emulator
     // e.g. Windows Phone Emulator(DE)
     : base("Windows Phone Emulator")
 {            
     DisplayInputController = new WindowsPhoneWindowsEmulatorDisplayInputController();
 }
コード例 #3
0
        static void Main(string[] args)
        {
            var displayInputController = new WindowsPhoneWindowsEmulatorDisplayInputController();

            displayInputController.ReleaseWindowFromForeground();
        }
コード例 #4
0
        static void Main(string[] args)
        {
            var displayInputController = new WindowsPhoneWindowsEmulatorDisplayInputController();

            displayInputController.EnsureWindowIsInForeground();
        }