Mercurial > silverbladetech
comparison SilverlightGlimpse/SilverlightValidation/App.xaml.cs @ 78:dd6bcd2535b6
Working version
author | Steven Hollidge <stevenhollidge@hotmail.com> |
---|---|
date | Mon, 23 Apr 2012 22:43:53 +0100 |
parents | 96e6fbd70f49 |
children | 5cb6117d80b1 |
comparison
equal
deleted
inserted
replaced
77:86ed4919b126 | 78:dd6bcd2535b6 |
---|---|
18 private void Application_Startup(object sender, StartupEventArgs e) | 18 private void Application_Startup(object sender, StartupEventArgs e) |
19 { | 19 { |
20 const string appName = "Silverlight Glimpse"; | 20 const string appName = "Silverlight Glimpse"; |
21 try | 21 try |
22 { | 22 { |
23 this.RootVisual = new Views.UserListView(); | 23 this.RootVisual = new Views.UserView(); |
24 Glimpse.Service.Load(this, appName, new TimeSpan(0,0,0,10)); | 24 Glimpse.Service.Load(this, appName); |
25 } | 25 } |
26 catch (Exception ex) | 26 catch (Exception ex) |
27 { | 27 { |
28 Glimpse.Service.DisplayLoadFailure(this, ex, appName); | 28 Glimpse.Service.DisplayLoadFailure(this, ex, appName); |
29 } | 29 } |