问题
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;
}
回答1:
Move the logic that sets the event for checked to the Silverlight equivalent of Form_Load.
来源:https://stackoverflow.com/questions/10584387/checkbox-checked-event