初めてのMetro Styleアプリケーション

公開:2012-03-08 06:01
更新:2020-02-15 04:37
カテゴリ:windows 8

初めてのMetro Styleアプリケーション。すんません。。

コードを覗いてみるとこれはC++と呼んでいいのかなと思える程の内容。あ、C++/CXというのかしら。。「public ref」ってなんだこれ..。


#pragma once

#include "pch.h"
#include "BlankPage.g.h"

namespace SFTracker
{
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public ref class BlankPage sealed
    {
    public:
        BlankPage();

    protected:
        virtual void OnNavigatedTo(Windows::UI::Xaml::Navigation::NavigationEventArgs^ e) override;
    };
}