Пример #1
0
 // Code to execute when the application is launching (eg, from Start)
 // This code will not execute when the application is reactivated
 private void Application_Launching(object sender, LaunchingEventArgs e)
 {
     // if our list of routes is empty, create the list
     if (null == routeList)
     {
         routeList = new Routes();
         routeList.LoadDefaultData();
     }
 }