Exemplo n.º 1
0
 /// <summary>
 /// Creates a new instance of <see cref="KeyboardPlatform"/> class.
 /// </summary>
 /// <param name="nativeWindow">The native window object reference</param>
 /// <param name="manager">The <see cref="KeyboardManager"/> whose events will be raised in response to platform-specific events</param>
 /// <exception cref="ArgumentNullException">Is thrown when <paramref name="nativeWindow"/> is null</exception>
 protected KeyboardPlatform(KeyboardManager manager)
 {
     this.manager = manager;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Creates a new instance of <see cref="KeyboardPlatformDesktop"/> class
 /// </summary>
 /// <param name="nativeWindow">The native window object reference</param>
 /// <exception cref="ArgumentNullException">Is thrown when <paramref name="nativeWindow"/> is null</exception>
 public DesktopKeyboardPlatform(KeyboardManager manager)
     : base(manager)
 {
 }