本文整理汇总了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)
{
// 确保所需的应用程序状态在此处保持不变。
}