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.
28 lines
769 B
C++
28 lines
769 B
C++
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
#include "pch.h"
|
|
#include "Controls/OverflowTextBlock.h"
|
|
#include "OverflowTextBlockAutomationPeer.h"
|
|
|
|
using namespace Windows::UI::Xaml::Automation::Peers;
|
|
using namespace Windows::Foundation::Collections;
|
|
|
|
namespace CalculatorApp::Controls
|
|
{
|
|
OverflowTextBlockAutomationPeer::OverflowTextBlockAutomationPeer(OverflowTextBlock ^ owner)
|
|
: FrameworkElementAutomationPeer(owner)
|
|
{
|
|
}
|
|
|
|
AutomationControlType OverflowTextBlockAutomationPeer::GetAutomationControlTypeCore()
|
|
{
|
|
return AutomationControlType::Text;
|
|
}
|
|
|
|
IVector<AutomationPeer ^> ^ OverflowTextBlockAutomationPeer::GetChildrenCore()
|
|
{
|
|
return nullptr;
|
|
}
|
|
}
|