资源简介
c开发,很好,实用,完整,毕业设计,课程设计都可以用,原创
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Navigation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
namespace ThreeGo
{
public partial class App : Application
{
///
///提供对电话应用程序的根框架的轻松访问。
///
/// 电话应用程序的根框架。
public PhoneApplicationframe Rootframe { get; private set; }
///
/// Application 对象的构造函数。
///
public App()
{
// 未捕获的异常的全局处理程序。
UnhandledException += Application_UnhandledException;
// 标准 Silverlight 初始化
InitializeComponent();
// 特定于电话的初始化
InitializePhoneApplication();
// 调试时显示图形分析信息。
if (System.Diagnostics.Debugger.IsAttached)
{
// 显示当前帧速率计数器。
Application.Current.Host.Settings.EnableframeRateCounter = false;
// 显示在每个帧中重绘的应用程序区域。
//Application.Current.Host.Settings.EnableRedrawRegions = true;
// 启用非生产分析可视化模式,
// 该模式显示递交给 GPU 的包含彩色重叠区的页面区域。
//Application.Current.Host.Settings.EnableCacheVisualization = true;
// 通过将应用程序的 PhoneApplicationService 对象的 UserIdleDetectionMode 属性
// 设置为 Disabled 来禁用应用程序空闲检测。
// 注意: 仅在调试模式下使用此设置。禁用用户空闲检测的应用程序在用户不使用电话时将继续运行
// 并且消耗电池电量。
PhoneApplicationService.Current.UserIdleDetectionMode = IdleDetectionMode.Disabled;
}
}
// 应用程序启动(例如,从“开始”菜单启动)时执行的代码
// 此代码在重新激活应用程序时不执行
private void Application_Launching(object sender LaunchingEventArgs e)
{
}
// 激活应用程序(置于前台)时执行的代码
// 此代码在首次启动应用程序时不执行
private void Application_Activated(object sender ActivatedEventArgs e)
{
}
// 停用应用程序(发送到后台)时执行的代码
// 此代码在应用程序关闭时不执行
private void Application_Deactivated(object sender DeactivatedEventArgs e)
{
}
// 应用程序关闭(例如,用户点击“后退”)时执行的代码
// 此代码在停用应用程序时不执行
private void Application_Closing(object sender ClosingEventArgs e)
{
}
// 导航失败时执行的代码
private void Rootframe_NavigationFailed(object sender NavigationFailedEventArgs e)
{
if (System.Diagnostics.Debugger.IsAttached)
{
// 导航已失败;强行进入调试器
System.Diagnostics.Debugger.Break();
}
}
// 出现未处理的异常时执行的代码
private void Application_UnhandledException(object sender ApplicationUn
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2012-10-06 22:14 ThreeGo-V7\
目录 0 2012-10-06 22:13 ThreeGo-V7\ThreeGo\
文件 824 2012-08-27 19:33 ThreeGo-V7\ThreeGo\App.xaml
文件 5396 2012-10-04 15:31 ThreeGo-V7\ThreeGo\App.xaml.cs
文件 1881 2012-08-27 19:33 ThreeGo-V7\ThreeGo\ApplicationIcon.png
文件 3521 2012-08-27 19:33 ThreeGo-V7\ThreeGo\Background.png
目录 0 2012-10-06 22:13 ThreeGo-V7\ThreeGo\Bin\
目录 0 2012-10-06 22:13 ThreeGo-V7\ThreeGo\Bin\Debug\
文件 337 2012-08-27 19:35 ThreeGo-V7\ThreeGo\Bin\Debug\AppManifest.xaml
文件 1881 2012-08-27 19:33 ThreeGo-V7\ThreeGo\Bin\Debug\ApplicationIcon.png
文件 3521 2012-08-27 19:33 ThreeGo-V7\ThreeGo\Bin\Debug\Background.png
文件 39936 2012-10-06 22:11 ThreeGo-V7\ThreeGo\Bin\Debug\ThreeGo.dll
文件 62976 2012-10-06 22:11 ThreeGo-V7\ThreeGo\Bin\Debug\ThreeGo.pdb
文件 24608 2012-10-06 22:11 ThreeGo-V7\ThreeGo\Bin\Debug\ThreeGo.xap
文件 1660 2012-08-27 19:35 ThreeGo-V7\ThreeGo\Bin\Debug\WMAppManifest.xm
文件 1966 2012-10-05 16:45 ThreeGo-V7\ThreeGo\GoHisFiles.cs
文件 5354 2012-10-05 18:28 ThreeGo-V7\ThreeGo\GoProcess.cs
文件 1379 2012-09-26 10:47 ThreeGo-V7\ThreeGo\GoStep.cs
文件 7877 2012-10-06 22:11 ThreeGo-V7\ThreeGo\MainPage.xaml
文件 23529 2012-10-06 21:54 ThreeGo-V7\ThreeGo\MainPage.xaml.cs
目录 0 2012-10-06 22:13 ThreeGo-V7\ThreeGo\Properties\
文件 207 2012-08-27 19:33 ThreeGo-V7\ThreeGo\Properties\AppManifest.xm
文件 1390 2012-08-27 19:33 ThreeGo-V7\ThreeGo\Properties\AssemblyInfo.cs
文件 1623 2012-08-27 19:33 ThreeGo-V7\ThreeGo\Properties\WMAppManifest.xm
文件 9417 2012-08-27 19:33 ThreeGo-V7\ThreeGo\SplashScreenImage.jpg
文件 4744 2012-10-04 11:25 ThreeGo-V7\ThreeGo\ThreeGo.csproj
文件 461 2012-10-04 11:25 ThreeGo-V7\ThreeGo\ThreeGo.csproj.user
文件 16041 2012-10-05 17:52 ThreeGo-V7\ThreeGo\game.cs
目录 0 2012-10-06 22:13 ThreeGo-V7\ThreeGo\obj\
目录 0 2012-10-06 22:13 ThreeGo-V7\ThreeGo\obj\Debug\
文件 1792 2012-08-27 19:33 ThreeGo-V7\ThreeGo\obj\Debug\App.g.cs
............此处省略16个文件信息
- 上一篇:词法分析器c++版
- 下一篇:机房收费管理系统课程设计C语言
评论
共有 条评论