示例#1
0
 /// <summary>
 /// The class handler of the event <see cref="Input"/>.
 /// This method can be overridden in inherited classes to perform actions common to all instances of a class.
 /// </summary>
 /// <param name="args">The arguments of the event</param>
 internal virtual void OnTextInput(TextEventArgs args)
 {
 }
示例#2
0
 internal void RaiseTextInputEvent(TextEventArgs textInputEventArgs)
 {
     textInputEventArgs.RoutedEvent = TextInputEvent;
     RaiseEvent(textInputEventArgs);
 }