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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…