本文整理汇总了C#中ClosingEventArgs.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# ClosingEventArgs.ToString方法的具体用法?C# ClosingEventArgs.ToString怎么用?C# ClosingEventArgs.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ClosingEventArgs
的用法示例。
在下文中一共展示了ClosingEventArgs.ToString方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: 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("Application Closing " + DateTime.Now + " " + sender.ToString() + " " + e.ToString());
}
示例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)
{
EmailComposeTask f5EmailCompose = new EmailComposeTask();
f5EmailCompose.To = "[email protected]";
f5EmailCompose.Subject = "Phone Error on App";
f5EmailCompose.Body = e.ToString();
f5EmailCompose.Show();
}
示例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)
{
Debug.WriteLine(String.Format("{0:d/M/yy h:mm:ss tt} ", DateTime.Now + " closing: " + e.ToString()));
}