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

Categories

0 votes
192 views
in Technique[技术] by (71.8m points)

c# - CheckBox_Checked event

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

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

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...