CheckBox in silverlight
Posted
by Malcolm
on Stack Overflow
See other posts from Stack Overflow
or by Malcolm
Published on 2010-05-19T14:37:57Z
Indexed on
2010/05/19
14:40 UTC
Read the original article
Hit count: 237
c#
|silverlight-4.0
I have 4 check boxes and by default they are checked and depending on these check boxes i have to show a value some where else.
for ex:
suppose for first checkbox i say 1, second 2 ,third 3 and fourth 4
so initially i store this value in a string name dg="1,2,3,4"
if the user unchecks the second check box the value in my dg must be showing :
dg="1,3,4"
And again if the user checks the second chekbox , my dg must store the value :
dg="1,2,3,4"
How to achieve this? TX in advance
© Stack Overflow or respective owner