本文整理匯總了C#中ClosingEventArgs類的典型用法代碼示例。如果您正苦於以下問題:C# ClosingEventArgs類的具體用法?C# ClosingEventArgs怎麽用?C# ClosingEventArgs使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
ClosingEventArgs類屬於命名空間,在下文中一共展示了ClosingEventArgs類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: OnServiceClosing
void OnServiceClosing(object sender, ClosingEventArgs e)
{
using (IsolatedStorageFileStream file = new IsolatedStorageFileStream("debugOutput.txt", FileMode.Append, FileAccess.Write, IsolatedStorageFile.GetUserStoreForApplication()))
{
using (StreamWriter writeFile = new StreamWriter(file))
{
writeFile.WriteLine("EXIT");
writeFile.Close();
}
file.Close();
}
}
示例2: Application_Closing
// Code to execute when the application is closing (eg, user hit Back)
// This code will not execute when the application is deactivated
private void Application_Closing(object sender, ClosingEventArgs e)
{
// Dispose ViewModels
var viewModelLocator = this.Resources["ViewModelLocator"] as ViewModelLocator;
if (viewModelLocator != null) viewModelLocator.Dispose();
// Close connection to relay service
//EveWindowsPhone.Pages.Main.MainView.client.CloseAsync();
}
示例3: Application_Closing
// Code to execute when the application is closing (eg, user hit Back)
// This code will not execute when the application is deactivated
private void Application_Closing(object sender, ClosingEventArgs e)
{
// The application will not be tombstoned, so save only to isolated storage.
if (!string.IsNullOrEmpty(ApplicationDataObject))
{
SaveDataToIsolatedStorage("Quran360DataFile.txt", ApplicationDataObject);
}
}
示例4: Application_Closing
// Код для выполнения при закрытии приложения (например, при нажатии пользователем кнопки "Назад")
// Этот код не будет выполняться при деактивации приложения
private void Application_Closing(object sender, ClosingEventArgs e)
{
if (!Session.RememberSession)
Session.CurrentSession = null;
}
示例5: Application_Closing
// Code to execute when the application is closing (eg, user hit Back)
// This code will not execute when the application is deactivated
private void Application_Closing(object sender, ClosingEventArgs e)
{
UnityPlayer.UnityApp.Quit();
}
示例6: Application_Closing
// 應用程序關閉(例如,用戶點擊“後退”)時執行的代碼
// 此代碼在停用應用程序時不執行
private void Application_Closing(object sender, ClosingEventArgs e)
{
SaveData();
SaveSettings();
update.UpdateTiles();
}
示例7: Application_Closing
// Code to execute when the application is closing (eg, user hit Back)
// This code will not execute when the application is deactivated
private void Application_Closing(object sender, ClosingEventArgs e)
{
BlobCache.UserAccount.Flush().Wait();
}
示例8: Application_Closing
// Code to execute when the application is closing (eg, user hit Back)
// This code will not execute when the application is deactivated
private void Application_Closing(object sender, ClosingEventArgs e)
{
Countly.EndSession();
}
示例9: Application_Closing
// Code to execute when the application is closing (eg, user hit Back)
// This code will not execute when the application is deactivated
private void Application_Closing(object sender, ClosingEventArgs e)
{
IsolatedStorageSettings settings = IsolatedStorageSettings.ApplicationSettings;
String image = CustomBrush1.ToString();
if (image != "System.Windows.Media.ImageBrush" && image != "#00000000")
{
if(settings.Contains("CustomBrush1"))
{
settings["CustomBrush1"]=CustomBrush1;
}
else
{
settings.Add("CustomBrush1", CustomBrush1);
}
}
image = CustomBrush2.ToString();
if (image != "System.Windows.Media.ImageBrush" && image != "#00000000")
{
if (settings.Contains("CustomBrush2"))
{
settings["CustomBrush2"] = CustomBrush2;
}
else
{
settings.Add("CustomBrush2", CustomBrush2);
}
}
image = CustomBrush3.ToString();
if (image != "System.Windows.Media.ImageBrush" && image != "#00000000")
{
if (settings.Contains("CustomBrush3"))
{
settings["CustomBrush3"] = CustomBrush3;
}
else
{
settings.Add("CustomBrush3", CustomBrush3);
}
}
image = CustomBrush4.ToString();
if (image != "System.Windows.Media.ImageBrush" && image != "#00000000")
{
if (settings.Contains("CustomBrush4"))
{
settings["CustomBrush4"] = CustomBrush4;
}
else
{
settings.Add("CustomBrush4", CustomBrush4);
}
}
image = CustomBrush5.ToString();
if (image != "System.Windows.Media.ImageBrush" && image != "#00000000")
{
if (settings.Contains("CustomBrush5"))
{
settings["CustomBrush5"] = CustomBrush5;
}
else
{
settings.Add("CustomBrush5", CustomBrush5);
}
}
image = CustomBrush6.ToString();
if (image != "System.Windows.Media.ImageBrush" && image != "#00000000")
{
if (settings.Contains("CustomBrush6"))
{
settings["CustomBrush6"] = CustomBrush6;
}
else
{
settings.Add("CustomBrush6", CustomBrush6);
}
}
settings.Save();
}
示例10: Application_Closing
// Code to execute when the application is closing (eg, user hit Back)
// This code will not execute when the application is deactivated
private void Application_Closing(object sender, ClosingEventArgs e)
{
if (db != null)
{
db.closeDatabase();
}
App.ViewModel.SaveRecents();
}
示例11: Application_Closing
// Code to execute when the application is closing (eg, user hit Back)
// This code will not execute when the application is deactivated
private void Application_Closing(object sender, ClosingEventArgs e)
{
this.SaveCurrentPuzzleId();
}
示例12: Application_Closing
// Code to execute when the application is closing (eg, user hit Back)
// This code will not execute when the application is deactivated
private void Application_Closing(object sender, ClosingEventArgs e)
{
using (IsolatedStorageFile storage = IsolatedStorageFile.GetUserStoreForApplication())
{
using (IsolatedStorageFileStream fs = storage.CreateFile(LogFile))
{
using (StreamWriter writer = new StreamWriter(fs))
{
Logger.Save(writer);
}
}
}
}
示例13: Application_Closing
// Code to execute when the application is closing (eg, user hit Back)
// This code will not execute when the application is deactivated
private void Application_Closing(object sender, ClosingEventArgs e)
{
// Ensure that required application state is persisted here.
var vml = Resources["Locator"] as ViewModelLocator;
vml.SaveState();
}
示例14: Application_Closing
// Code to execute when the application is closing (eg, user hit Back)
// This code will not execute when the application is deactivated
private void Application_Closing(object sender, ClosingEventArgs e)
{
Debug.WriteLine("App is closing");
if (OnNewTilePinned != null)
{
OnNewTilePinned();
OnNewTilePinned = null;
}
}
示例15: Application_Closing
// 應用程序關閉(例如,用戶點擊“後退”)時執行的代碼
// 此代碼在停用應用程序時不執行
private void Application_Closing(object sender, ClosingEventArgs e)
{
// 確保所需的應用程序狀態在此處保持不變。
}