资源简介
Win8世界杯游戏V1.0源码
功能介绍:
win8世界杯游戏源码,实现了基本的功能,以后版本会不断
跟进,修改,希望大家提出宝贵的意见,游戏功能比较简单。
操作方式:
选择一个球员,当球员旋转,点击球员的方向即可
注意:
开发环境为Visual Studio 2012
代码片段和文件信息
using SoccerLight.View;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Windows.ApplicationModel;
using Windows.ApplicationModel.Activation;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
// “空白应用程序”模板在 http://go.microsoft.com/fwlink/?linkId=234227 上有介绍
namespace SoccerLight
{
///
/// 提供特定于应用程序的行为,以补充默认的应用程序类。
///
sealed partial class App : Application
{
///
/// 初始化单一实例应用程序对象。这是执行的创作代码的第一行,
/// 逻辑上等同于 main() 或 WinMain()。
///
public static MainPage main { get; set; }
public App()
{
this.InitializeComponent();
this.Suspending += OnSuspending;
main = MainPage1.main;
}
///
/// 在应用程序由最终用户正常启动时进行调用。
/// 当启动应用程序以执行打开特定的文件或显示搜索结果等操作时
/// 将使用其他入口点。
///
/// 有关启动请求和过程的详细信息。
protected override void OnLaunched(LaunchActivatedEventArgs args)
{
frame rootframe = Window.Current.Content as frame;
// 不要在窗口已包含内容时重复应用程序初始化,
// 只需确保窗口处于活动状态
if (rootframe == null)
{
// 创建要充当导航上下文的框架,并导航到第一页
rootframe = new frame();
if (args.PreviousExecutionState == ApplicationExecutionState.Terminated)
{
//TODO: 从之前挂起的应用程序加载状态
}
// 将框架放在当前窗口中
Window.Current.Content = rootframe;
}
Window.Current.Content = new UserControlContainer();
//if (rootframe.Content == null)
//{
// // 当未还原导航堆栈时,导航到第一页,
// // 并通过将所需信息作为导航参数传入来配置
// // 参数
// if (!rootframe.Navigate(typeof(MainPage1) args.Arguments))
// {
// throw new Exception(“Failed to create initial page“);
// }
//}
((UserControlContainer)Window.Current.Content).SwitchToView(typeof(IntroMenu) null);
// 确保当前窗口处于活动状态
Window.Current.Activate();
}
///
/// 在将要挂起应用程序执行时调用。在不知道应用程序
/// 将被终止还是恢复的情况下保存应用程序状态,
/// 并让内存内容保持不变。
///
/// 挂起的请求的源。
/// 有关挂起的请求的详细信息。
private void OnSuspending(object sender SuspendingEventArgs e)
{
var deferral = e.SuspendingOperation.GetDeferral();
//TODO: 保存应用程序状态并停止任何后台活动
deferral.Complete();
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
....... 722 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\App.xaml
....... 3760 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\App.xaml.cs
....... 801 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\Assets\Logo.png
....... 329 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\Assets\SmallLogo.png
....... 2146 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\Assets\SplashScreen.png
....... 429 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\Assets\StoreLogo.png
....... 862 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\ba
....... 724 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\App.xaml
....... 724 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\App.xaml
....... 2090 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\AppxManifest.xm
....... 801 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Assets\Logo.png
....... 329 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Assets\SmallLogo.png
....... 2146 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Assets\SplashScreen.png
....... 429 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Assets\StoreLogo.png
....... 975 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Common\ReadMe.txt
....... 118789 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Common\Standardst
....... 5797 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Images\ALG.png
....... 3990 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Images\ARG.png
....... 5513 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Images\AUS.png
....... 7985 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Images\BRA.png
....... 10546 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Images\CHI.png
....... 3394 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Images\CIV.png
....... 6546 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Images\CMR.png
....... 7301 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Images\DEN.png
....... 7604 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Images\ENG.png
....... 14203 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Images\ESP.png
....... 8452 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Images\FRA.png
....... 6172 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Images\GER.png
....... 7434 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Images\GHA.png
....... 62831 2012-11-14 08:39 51aspx_ZCWWorldCupV10a49df1fa-a2a5-4fc7-8432-a4b7ddae03b6\bin\Debug\AppX\Images\goalnet.png
............此处省略225个文件信息
- 上一篇:Win8漂亮备忘录源码20121102
- 下一篇:台球厅管理系统源码20130321
相关资源
- Win8漂亮备忘录源码20121102
- 游戏点卡销售管理系统源码
- directX做的拼图小游戏 vc2008
- Cocos Creator重力小游戏《给我滚》开源
- LabVIEW 2012 Simon 小游戏 编程 源代码
- DirectX9.0游戏开发编程基础pdf 高清可复
- VSPD6.9虚拟串口带破解,win8可用
- Visual Basic 6.0_.NET游戏开发随书源码
- 基于安卓的中国象棋游戏app
- ios大作业打地鼠游戏源码+文档
- 小人吐笑脸案例源代码
- Qt打砖块游戏
- 推箱子自动求解及游戏(最终算法源
- labview小游戏
- FBAs游戏机模拟器源码,支持联网对战
- VMware Tools for mac osx 10.13 darwin852
- os darwin8.5.8
- Processing实现的一个类FlappyBird游戏
- 翻牌游戏 翻牌之海贼王
- 游戏:猫狗大作战
- 简单的d3d第一人称射击游戏源码
- scratch游戏《愤怒的小鸟》
- cocoscreator 微信好友排行榜简单demo
- win32 游戏界面
- 拔河游戏verilog代码FPGA
- 基于FPGA的点阵贪吃蛇游戏的设计与实
- 游戏过检测版CE
- viliv10.1寸win8.1平板亿道方案BIOS BIN文件
- unity见缝插针游戏
- 基于basys3的贪吃蛇小游戏
评论
共有 条评论