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

OnLostFocus() protected method

Override the Blur/LostFocus event to show the Hint if needed.
protected OnLostFocus ( RoutedEventArgs e ) : void
e System.Windows.RoutedEventArgs Event arguments.
return void
        protected override void OnLostFocus(RoutedEventArgs e)
        {
            UpdateHintVisibility();
            base.OnLostFocus(e);
        }