• 大小: 34.88MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-24
  • 语言: 其他
  • 标签: win8  应用  

资源简介

这是我自己做的win8应用程序的源码。你可以在这里开始学习如何在win8上做应用程序。

资源截图

代码片段和文件信息

using Hirstyle_Introduces.Common;

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=234228 上有介绍

namespace Hirstyle_Introduces
{
    /// 
    /// 提供特定于应用程序的行为,以补充默认的应用程序类。
    /// 

    sealed partial class App : Application
    {
        /// 
        /// 初始化单一实例应用程序对象。这是执行的创作代码的第一行,
        /// 逻辑上等同于 main() 或 WinMain()。
        /// 

        public App()
        {
            this.InitializeComponent();
            this.Suspending += OnSuspending;
        }

        /// 
        /// 在应用程序由最终用户正常启动时进行调用。
        /// 当启动应用程序以执行打开特定的文件或显示搜索结果等操作时
        /// 将使用其他入口点。
        /// 

        /// 有关启动请求和过程的详细信息。
        protected override async void OnLaunched(LaunchActivatedEventArgs args)
        {
            frame rootframe = Window.Current.Content as frame;

            // 不要在窗口已包含内容时重复应用程序初始化,
            // 只需确保窗口处于活动状态
            
            if (rootframe == null)
            {
                // 创建要充当导航上下文的框架,并导航到第一页
                rootframe = new frame();
                //将框架与 SuspensionManager 键关联                                
                SuspensionManager.Registerframe(rootframe “Appframe“);

                if (args.PreviousExecutionState == ApplicationExecutionState.Terminated)
                {
                    // 仅当合适时才还原保存的会话状态
                    try
                    {
                        await SuspensionManager.RestoreAsync();
                    }
                    catch (SuspensionManagerException)
                    {
                        //还原状态时出现问题。
                        //假定没有状态并继续
                    }
                }

                // 将框架放在当前窗口中
                Window.Current.Content = rootframe;
            }
            if (rootframe.Content == null)
            {
                // 当未还原导航堆栈时,导航到第一页,
                // 并通过将所需信息作为导航参数传入来配置
                // 参数
                if (!rootframe.Navigate(typeof(ItemsPage) “AllGroups“))
                {
                    throw new Exception(“Failed to create initial page“);
                }
            }
            // 确保当前窗口处于活动状态
            Window.Current.Activate();
        }

        /// 
        /// 在将要挂起应用程序执行时调用。在不知道应用程序
        /// 将被终止还是恢复的情况下保存应用程序状态,
        /// 并让内存内容保持不变。
        /// 

        /// 挂起的请求的源。
        /// 有关挂起的请求的详细信息。
        priv

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2012-12-02 11:26  Hirstyle Introduces\
     目录           0  2012-12-02 11:26  Hirstyle Introduces\Hirstyle Introduces\
     文件        2647  2012-12-01 19:08  Hirstyle Introduces\Hirstyle Introduces.sln
     文件       10640  2012-12-02 11:24  Hirstyle Introduces\Hirstyle Introduces.suo
     文件      109056  2012-12-02 11:06  Hirstyle Introduces\Hirstyle Introduces.v11.suo
     文件         913  2012-12-01 19:08  Hirstyle Introduces\Hirstyle Introduces\App.xaml
     文件        4013  2012-12-01 19:08  Hirstyle Introduces\Hirstyle Introduces\App.xaml.cs
     目录           0  2012-12-02 11:26  Hirstyle Introduces\Hirstyle Introduces\Assets\
     文件       80356  2011-12-19 07:48  Hirstyle Introduces\Hirstyle Introduces\Assets\Background.jpg
     文件         560  2012-04-02 23:39  Hirstyle Introduces\Hirstyle Introduces\Assets\DarkGray.png
     文件         560  2012-04-02 23:39  Hirstyle Introduces\Hirstyle Introduces\Assets\LightGray.png
     文件       31873  2012-12-01 19:01  Hirstyle Introduces\Hirstyle Introduces\Assets\Logo.png
     文件       13910  2011-12-19 08:28  Hirstyle Introduces\Hirstyle Introduces\Assets\ManBackground.jpg
     文件         561  2012-04-02 23:39  Hirstyle Introduces\Hirstyle Introduces\Assets\MediumGray.png
     文件        2557  2012-12-01 19:07  Hirstyle Introduces\Hirstyle Introduces\Assets\SmallLogo.png
     文件      144635  2012-12-01 18:46  Hirstyle Introduces\Hirstyle Introduces\Assets\SplashScreen.png
     文件        6175  2012-12-01 19:03  Hirstyle Introduces\Hirstyle Introduces\Assets\StoreLogo.png
     文件       11108  2011-12-19 08:28  Hirstyle Introduces\Hirstyle Introduces\Assets\WomanBackgroud.jpg
     目录           0  2012-12-02 11:26  Hirstyle Introduces\Hirstyle Introduces\bin\
     目录           0  2012-12-02 11:26  Hirstyle Introduces\Hirstyle Introduces\bin\ARM\
     目录           0  2012-12-01 22:42  Hirstyle Introduces\Hirstyle Introduces\bin\ARM\Debug\
     目录           0  2012-12-01 22:42  Hirstyle Introduces\Hirstyle Introduces\bin\ARM\Release\
     目录           0  2012-12-02 11:26  Hirstyle Introduces\Hirstyle Introduces\bin\Debug\
     文件         915  2012-12-01 19:08  Hirstyle Introduces\Hirstyle Introduces\bin\Debug\App.xaml
     目录           0  2012-12-02 11:26  Hirstyle Introduces\Hirstyle Introduces\bin\Debug\AppX\
     文件        2300  2012-12-02 11:08  Hirstyle Introduces\Hirstyle Introduces\bin\Debug\AppxManifest.xml
     文件         915  2012-12-01 19:08  Hirstyle Introduces\Hirstyle Introduces\bin\Debug\AppX\App.xaml
     文件        2300  2012-12-02 11:08  Hirstyle Introduces\Hirstyle Introduces\bin\Debug\AppX\AppxManifest.xml
     目录           0  2012-12-02 11:26  Hirstyle Introduces\Hirstyle Introduces\bin\Debug\AppX\Assets\
     文件       80356  2011-12-19 07:48  Hirstyle Introduces\Hirstyle Introduces\bin\Debug\AppX\Assets\Background.jpg
     文件         560  2012-04-02 23:39  Hirstyle Introduces\Hirstyle Introduces\bin\Debug\AppX\Assets\DarkGray.png
............此处省略239个文件信息

评论

共有 条评论