- Removed unneeded diagnostic events and code - Added and consolidated events into the events defined in the spec
23 lines
477 B
C++
23 lines
477 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();
|
|
};
|
|
} /* namespace CalculatorApp */
|