CheckBox_Checked event

孤街浪徒 提交于 2019-12-25 08:09:24

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!