• 大小: 1.87MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-08-15
  • 语言: 其他
  • 标签: Win8  备忘录  源码  

资源简介

Win8漂亮备忘录源码 功能介绍: 从Windows Phone移植过来的漂亮的 备忘录,界面美观,有动画效果 适合win8开发下载学习。 注意: 开发环境为Visual Studio 2012

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Windows.ApplicationModel;
using Windows.ApplicationModel.Activation;
using Windows.ApplicationModel.Search;
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;

// The Blank Application template is documented at http://go.microsoft.com/fwlink/?linkId=234227

namespace Clearer
{
    /// 
    /// Provides application-specific behavior to supplement the default Application class.
    /// 

    sealed partial class App : Application
    {
        /// 
        /// Initializes the singleton application object.  This is the first line of authored code
        /// executed and as such is the logical equivalent of main() or WinMain().
        /// 

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

        /// 
        /// Invoked when the application is launched normally by the end user.  Other entry points
        /// will be used when the application is launched to open a specific file to display
        /// search results and so forth.
        /// 

        /// Details about the launch request and process.
        protected override void OnLaunched(LaunchActivatedEventArgs args)
        {
            frame rootframe = Window.Current.Content as frame;

            // Do not repeat app initialization when the Window already has content
            // just ensure that the window is active
            if (rootframe == null)
            {
                // Create a frame to act as the navigation context and navigate to the first page
                rootframe = new frame();

                if (args.PreviousExecutionState == ApplicationExecutionState.Terminated)
                {
                    //TODO: Load state from previously suspended application
                }

                // Place the frame in the current Window
                Window.Current.Content = rootframe;
            }

            if (rootframe.Content == null)
            {
                // When the navigation stack isn‘t restored navigate to the first page
                // configuring the new page by passing required information as a navigation
                // parameter
                if (!rootframe.Navigate(typeof(MainPage) args.Arguments))
                {
                    throw new Exception(“Failed to create initial page“);
                }
            }
            // Ensure the current window is active
            Window.Current.Activate();
        }

        /// 

        /// Invoked when application

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-02-22 16:17  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\
     文件         737  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\App.xaml
     文件        4262  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\App.xaml.cs
     目录           0  2013-02-22 16:17  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\Assets\
     文件       15937  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\Assets\Logo.png
     文件        3975  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\Assets\SmallLogo.png
     文件        2146  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\Assets\SplashScreen.png
     文件        5051  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\Assets\StoreLogo.png
     文件        2665  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\Assets\tile-sdk.png
     文件      734008  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\background.jpg
     目录           0  2013-02-22 16:17  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\
     目录           0  2013-02-22 16:17  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\
     文件         739  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\App.xaml
     目录           0  2013-02-22 16:17  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppX\
     文件        2197  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppxManifest.xml
     文件         739  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppX\App.xaml
     文件        2197  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppX\AppxManifest.xml
     目录           0  2013-02-22 16:17  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppX\Assets\
     文件       15937  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppX\Assets\Logo.png
     文件        3975  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppX\Assets\SmallLogo.png
     文件        2146  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppX\Assets\SplashScreen.png
     文件        5051  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppX\Assets\StoreLogo.png
     文件        2665  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppX\Assets\tile-sdk.png
     文件      734008  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppX\background.jpg
     文件       77824  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppX\Clearer.exe
     文件      212480  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppX\Clearer.pdb
     目录           0  2013-02-22 16:17  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppX\Common\
     文件      119067  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppX\Common\Standardstyles.xaml
     文件       11502  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppX\MainPage.xaml
     目录           0  2013-02-22 16:17  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppX\microsoft.system.package.metadata\
     文件         580  2012-11-02 11:08  51aspx_Win8Memorandumcdb8586f-ac8f-488a-a86b-3f8798782de9\bin\Debug\AppX\microsoft.system.package.metadata\S-1-5-21-2307621797-1716923300-828744444-1001.pckgdep
............此处省略79个文件信息

评论

共有 条评论