I am working on an application that requires running out of browser; How can I test if the application is running Out of Browser?
+2
A:
Use the property on the Application
object:
if (System.Windows.Application.Current.IsRuningOutOfBrowser)
{
// The app is out of browser
}
Jeff Wilcox
2010-05-23 21:19:44