/// <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) { }
internal void RaiseTextInputEvent(TextEventArgs textInputEventArgs) { textInputEventArgs.RoutedEvent = TextInputEvent; RaiseEvent(textInputEventArgs); }