Is it possible to hide Checkbox content in Silverlight
CheckBox cb = new CheckBox();
cb.Name = "checkboxName";
cb.Content = 99;
// value that I need somewhere else, but don’t want user to see it
Thank you
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you don’t want content to be seen just keep it empty and use tag property to store any object.
i.e cb.tag = Anything. => this can be accessed anywhere.