private static void InitialCopy() { CopyToIsolatedStorageHelper.CopyToIsolatedStorage("Initial/NdgDB.sdf", "NdgDB.sdf"); CopyToIsolatedStorageHelper.CopyToIsolatedStorage("Initial/English_en-GB.xml", "English_en-GB.xml"); }
// 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) { CopyToIsolatedStorageHelper.CopyToIsolatedStorage("NdgDB.sdf", "NdgDB.sdf"); CopyToIsolatedStorageHelper.CopyToIsolatedStorage("English_en-GB.xml", "English_en-GB.xml"); }