Tuesday 16 July 2013

Enter Click Login Button Press Event occur in Password box

code:

 private void pwd_KeyDown(object sender, KeyRoutedEventArgs e)
        {        
            if (e.Key == Windows.System.VirtualKey.Enter)
            {
                loginclick_Click(this, new RoutedEventArgs());
            }

        }

No comments:

Post a Comment