資源簡介
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
評論
共有 條評論