有时按钮在真实设备上不起作用(Windows Phone)

时间:2012-03-19 14:31:55

标签: c# silverlight windows-phone-7 silverlight-4.0 silverlight-3.0

我的页面上有一个按钮(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
                               });
            }
        }

0 个答案:

没有答案