mirror of
https://github.com/Microsoft/calculator.git
synced 2025-07-05 20:51:09 -07:00
25 lines
633 B
C#
25 lines
633 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT License.
|
|
|
|
using MS.Internal.Mita.Foundation;
|
|
using MS.Internal.Mita.Foundation.Controls;
|
|
|
|
namespace Calculator.UIAutomationLibrary.Components
|
|
{
|
|
public class DateCalculatorPom : UIObject
|
|
{
|
|
private const string ModeSelectorId = "DateCalculationOption";
|
|
|
|
public DateCalculatorPom(UIObject uiObject) : base(uiObject)
|
|
{
|
|
}
|
|
|
|
public ComboBox ModeSelector
|
|
{
|
|
get
|
|
{
|
|
return new ComboBox(this.Descendants.Find(ModeSelectorId));
|
|
}
|
|
}
|
|
}
|
|
}
|