-
Notifications
You must be signed in to change notification settings - Fork 992
Commit
…attern_to_UpDownControls
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
using static Interop; | ||
|
||
namespace System.Windows.Forms | ||
{ | ||
public abstract partial class UpDownBase | ||
{ | ||
internal partial class UpDownEdit | ||
{ | ||
internal class UpDownEditAccessibleObject : ControlAccessibleObject | ||
{ | ||
private readonly UpDownEdit _owningUpDownEdit; | ||
private readonly TextBoxBaseUiaTextProvider _textProvider; | ||
private readonly UpDownBase _parent; | ||
|
||
public UpDownEditAccessibleObject(UpDownEdit owner, UpDownBase parent) : base(owner) | ||
{ | ||
_parent = parent ?? throw new ArgumentNullException(nameof(parent)); | ||
_owningUpDownEdit = owner; | ||
_textProvider = new TextBoxBaseUiaTextProvider(owner); | ||
UseTextProviders(_textProvider, _textProvider); | ||
} | ||
|
||
internal override bool IsIAccessibleExSupported() => true; | ||
|
||
public override string? Name | ||
{ | ||
get => _parent.AccessibilityObject.Name; | ||
set => _parent.AccessibilityObject.Name = value; | ||
} | ||
|
||
public override string? KeyboardShortcut => _parent.AccessibilityObject.KeyboardShortcut; | ||
|
||
internal override object? GetPropertyValue(UiaCore.UIA propertyID) | ||
=> propertyID switch | ||
{ | ||
UiaCore.UIA.IsTextPatternAvailablePropertyId => IsPatternSupported(UiaCore.UIA.TextPatternId), | ||
UiaCore.UIA.IsTextPattern2AvailablePropertyId => IsPatternSupported(UiaCore.UIA.TextPattern2Id), | ||
_ => base.GetPropertyValue(propertyID), | ||
}; | ||
|
||
internal override bool IsPatternSupported(UiaCore.UIA patternId) | ||
=> patternId switch | ||
{ | ||
UiaCore.UIA.TextPatternId => true, | ||
UiaCore.UIA.TextPattern2Id => true, | ||
_ => base.IsPatternSupported(patternId) | ||
}; | ||
|
||
internal override bool IsReadOnly => _owningUpDownEdit.ReadOnly; | ||
} | ||
} | ||
} | ||
} |
This file was deleted.