コード例 #1
0
 /// <summary>
 /// Handles the inputMethodTextChanged event by invoking the
 /// inputMethodTextChanged methods on listener-a and listener-b. </summary>
 /// <param name="e"> the item event </param>
 public virtual void InputMethodTextChanged(InputMethodEvent e)
 {
     ((InputMethodListener)a).InputMethodTextChanged(e);
     ((InputMethodListener)b).InputMethodTextChanged(e);
 }
コード例 #2
0
 /// <summary>
 /// Handles the caretPositionChanged event by invoking the
 /// caretPositionChanged methods on listener-a and listener-b. </summary>
 /// <param name="e"> the item event </param>
 public virtual void CaretPositionChanged(InputMethodEvent e)
 {
     ((InputMethodListener)a).CaretPositionChanged(e);
     ((InputMethodListener)b).CaretPositionChanged(e);
 }
コード例 #3
0
 /// <summary>
 /// Processes input method events occurring on this component by
 /// dispatching them to any registered
 /// <code>InputMethodListener</code> objects.
 /// </summary>
 protected void processInputMethodEvent(InputMethodEvent @e)
 {
 }