我的页面上有一个按钮(Windows Phone),有时它不能在真实设备上运行。 为什么会发生这种情况以及如何解决这个问题?
更新 该事件未调用
<Button Content="proceed" Style="{StaticResource CustomButtonStyle}" Margin="70,0,90,0" x:Name="btnProceed" Click="btnProceed_Click" Foreground="#DEFFFFFF" BorderBrush="#DEFFFFFF" Background="Transparent" Width="339" />
private void btnProceed_Click(object sender, RoutedEventArgs e)
{
if ((txtLogin.IsValid) || (txtLogin.IsValid) ||
(!string.IsNullOrEmpty(txtLogin.Text))
|| (string.IsNullOrEmpty(txtPIN.Text)))
{
App.ShowProgressBar();
CredentialsHandler.GetInstance().StartCheckRequest(new ContgoCredentials
{
Login = this.txtLogin.Text,
Password = this.txtPIN.Text
});
}
}