Microsoft.Phone.Controls.PhoneTextBox.OnActionIconTapped C# (CSharp) Method

OnActionIconTapped() private method

Determines if the developer set an event for ActionIconTapped.
private OnActionIconTapped ( object sender, RoutedEventArgs e ) : void
sender object The sender object
e System.Windows.RoutedEventArgs The RoutedEventArgs for the event
return void
        private void OnActionIconTapped(object sender, RoutedEventArgs e)
        {
            _ignoreFocus = true;

            var handler = ActionIconTapped;

            if (handler != null)
            {
                handler(this, e);
            }
        }