Base class for completion windows. Handles positioning the window at the caret.
Inheritance: System.Windows.Window
コード例 #1
0
            const Key KeyDeadCharProcessed = (Key)0xac; // Key.DeadCharProcessed; // new in .NET 4

            #endregion Fields

            #region Constructors

            public InputHandler(CompletionWindowBase window)
                : base(window.TextArea)
            {
                Debug.Assert(window != null);
                this.window = window;
            }
コード例 #2
0
 public InputHandler(CompletionWindowBase window)
     : base(window.TextArea)
 {
     Debug.Assert(window != null);
     this.window = window;
 }