private void Input_GotFocus(object sender, RoutedEventArgs e)
 {
     //TextBox input = sender as TextBox;
     //if (input == null)
     //{
     //    return;
     //}
     //if (input.Text == AppResources.RegisterTip || input.Text == AppResources.PasswordTip)
     //{
     //    input.Text = "";
     //}
     PopupManager.Input_GotFocus((Control)sender, this.LayoutRoot);
 }
Beispiel #2
0
        private void Input_GotFocus(object sender, RoutedEventArgs e)
        {
            TextBox input = sender as TextBox;

            if (input == null)
            {
                return;
            }
            //if (input.Text == AppResources.AccountTip)
            //{
            //    input.Text = "";
            //}
            PopupManager.Input_GotFocus((Control)sender, this.LayoutRoot);
        }
Beispiel #3
0
 private void PassWordInput_GotFocus(object sender, RoutedEventArgs e)
 {
     PopupManager.Input_GotFocus((Control)sender, this.LayoutRoot);
 }