资源简介
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
相关资源
- flash3.0小游戏
- Scrach 欢乐狙击手.sb2
- linux应用层的华容道游戏源代码
- 小鸡快跑游戏.
- [易语言]游戏多开例程
- 贪吃蛇游戏设计(汇编语言)
- VC 游戏编程—附源代码
- C 纸牌游戏——21点
- 分享 mud 文字游戏 源码
- c 制作的RPG小游戏
- 五子棋游戏实现悔棋功能
- 找不同FLASH游戏源码
- planeGame飞机游戏
- 拼图游戏源代码 powerbuilder 9.0实例
- 解决WPE进不了游戏的最佳方法(闭屏
- linux扫雷游戏代码
- 多线程实例:桌面智能弹球小游戏
- “猜数字”游戏 算法破解
- OpenGL-3D坦克模拟
- 联机版井字棋源码
- 拼图游戏(可自由选择难度)
- 扫雷(MVC架构)
- 解封SHOW 51VV 9158 封机器码类游戏机
- scratch穿越迷宫.sb2
- 小鱼捉迷藏Scratch小游戏
- GlowtoolsA-wdf网易游戏wdf查看及解包
- 游戏音频图像提取工具GARbro
- OPENGL实现世界上最小的3D游戏
- Scrach3.0 跳一跳小游戏
- js 迷宫小游戏源码
评论
共有 条评论