Path: blob/master/samples/winrt_universal/PhoneTutorial/MainPage.xaml.h
16339 views
//1// MainPage.xaml.h2// Declaration of the MainPage class.3//45#pragma once67#include "MainPage.g.h"89namespace PhoneTutorial10{11/// <summary>12/// An empty page that can be used on its own or navigated to within a Frame.13/// </summary>14public ref class MainPage sealed15{16public:17MainPage();1819protected:20virtual void OnNavigatedTo(Windows::UI::Xaml::Navigation::NavigationEventArgs^ e) override;21private:2223Windows::UI::Xaml::Media::Imaging::WriteableBitmap^ m_bitmap;24void Process_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);25void Reset_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);26void LoadImage();27};28}293031