Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I eight check boxes in a Silverlight app, they are getting checked every time the windows that holds them is loaded, this keeps checking and un-checking the boxes without any user input.

Is there a way to and a counter for instance, to make sure the CheckBox_Checked event is not used every time the window is loaded?

Something like-

private void checkBox1_Checked(object sender, RoutedEventArgs e)
{
    int counter = 0
    if(counter == 1)
    {
        //do nothing
    }
    else
    {
        //do something
    }
    counter1 = 1;
}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
199 views
Welcome To Ask or Share your Answers For Others

1 Answer

Move the logic that sets the event for checked to the Silverlight equivalent of Form_Load.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...