Accessing the WebContext class in XAML
The generated App.xaml.cs file contains this private void Application_Startup(object sender, StartupEventArgs e) { // This will enable you to bind controls in XAML files to WebContext.Current // properties this.Resources.Add("WebContext", WebContext.Current); but I cannot figure out how to refer to this object. It seems like I o...