Where to store application global variable?
- by Shawn Mclean
I'm using silverlight, project structure is similiar to any other .net app. I have a map control that I would like to store what mode it is in (either road or aerial) so that other controls can access this.
Where do I put this enum variable, I plan to use 2 way binding on it so both are updated when either changes.
Thanks.