mirror of
https://github.com/Microsoft/calculator.git
synced 2025-07-05 20:51:09 -07:00
Description of the changes: Adjusted some of the values in .clang-format Add clang-format-all.ps1 Fix path to .clang-format in Calculator.sln How changes were validated: Manual.
26 lines
968 B
C++
26 lines
968 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
namespace CalculatorApp
|
|
{
|
|
namespace Common
|
|
{
|
|
/// <summary>
|
|
/// Value converter that translates Visible to Collapsed and vice versa
|
|
/// </summary>
|
|
[Windows::Foundation::Metadata::WebHostHidden] public ref class VisibilityNegationConverter sealed : Windows::UI::Xaml::Data::IValueConverter
|
|
{
|
|
public:
|
|
virtual Platform::Object
|
|
^ Convert(Platform::Object ^ value, Windows::UI::Xaml::Interop::TypeName targetType, Platform::Object ^ parameter, Platform::String ^ language);
|
|
virtual Platform::Object
|
|
^ ConvertBack(
|
|
Platform::Object ^ value,
|
|
Windows::UI::Xaml::Interop::TypeName targetType,
|
|
Platform::Object ^ parameter,
|
|
Platform::String ^ language);
|
|
};
|
|
}
|
|
}
|