Click here to Skip to main content
15,891,423 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
My front is designed in xaml and I'm coding in c# but in c# I always check like this but now this is giving problem. Doing this 1st time in xaml.cs

C#

C#
if(rdbtnKg.Checked==true)
            {

            }
Posted
Comments
Mohammed Hameed 11-May-13 7:30am    
Can u provide the exception details?

1 solution

Ahhhhhhhhhh tooo easy solved by myself :)

C#

C#
if(rdbtnKg.IsChecked==true)
            {

            }
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900