23 lines
576 B
C++
23 lines
576 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
#include "AboutFlyout.g.h"
|
|
|
|
namespace CalculatorApp
|
|
{
|
|
public ref class AboutFlyout sealed
|
|
{
|
|
public:
|
|
AboutFlyout();
|
|
|
|
void SetDefaultFocus();
|
|
|
|
private:
|
|
void FeedbackButton_Click(_In_ Platform::Object^ sender, _In_ Windows::UI::Xaml::RoutedEventArgs^ e);
|
|
void SetVersionString();
|
|
void UserControl_Loaded(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
|
|
};
|
|
} /* namespace CalculatorApp */
|