mirror of
https://github.com/izzy2lost/vba10.git
synced 2026-03-26 18:15:30 -07:00
27 lines
672 B
C++
27 lines
672 B
C++
//
|
|
// HelpPage.xaml.h
|
|
// Declaration of the HelpPage class
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "HelpPage.g.h"
|
|
|
|
namespace VBA10
|
|
{
|
|
/// <summary>
|
|
/// An empty page that can be used on its own or navigated to within a Frame.
|
|
/// </summary>
|
|
[Windows::Foundation::Metadata::WebHostHidden]
|
|
public ref class HelpPage sealed
|
|
{
|
|
public:
|
|
HelpPage();
|
|
|
|
private:
|
|
void gplButton_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
|
|
void sourceButton_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
|
|
void contactBlock_Tapped(Platform::Object^ sender, Windows::UI::Xaml::Input::TappedRoutedEventArgs^ e);
|
|
};
|
|
}
|