I am writing a C # application using Visual Studio 2010. Suddenly, the strangest thing started.
I have two radio boxes at the top of the window, both set to Checked = False . I searched everywhere in the code, I see no reason why this would be anything but False .
Now the first of these two fields (called Radio1 and Radio2 respectively) began to be automatically checked at application startup. This causes a problem, because there is an event related to the cells being checked, and now this event is fired every time the program opens (which leads to serious problems).
Does anyone have any idea why this checkbox is automatically checked? As I mentioned, I searched everywhere for the code, just in case, when I chatted Radio1.Checked = true; . But this is not so.
source share