|
// 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 System.Windows.Controls.Primitives;
namespace System.Windows.Automation.Peers
{
/// <summary>
/// AutomationPeer for DataGridRowHeader
/// </summary>
public sealed class DataGridRowHeaderAutomationPeer : ButtonBaseAutomationPeer
{
#region Constructors
/// <summary>
/// AutomationPeer for DataGridRowHeader
/// </summary>
/// <param name="owner">DataGridRowHeader</param>
public DataGridRowHeaderAutomationPeer(DataGridRowHeader owner)
: base(owner)
{
}
#endregion
#region AutomationPeer Overrides
/// <summary>
/// Gets the control type for the element that is associated with the UI Automation peer.
/// </summary>
/// <returns>The control type.</returns>
protected override AutomationControlType GetAutomationControlTypeCore()
{
return AutomationControlType.HeaderItem;
}
/// <summary>
/// Called by GetClassName that gets a human readable name that, in addition to AutomationControlType,
/// differentiates the control represented by this AutomationPeer.
/// </summary>
/// <returns>The string that contains the name.</returns>
protected override string GetClassNameCore()
{
return Owner.GetType().Name;
}
// AutomationControlType.HeaderItem must return IsContentElement false.
// See http://msdn.microsoft.com/en-us/library/ms742202.aspx
protected override bool IsContentElementCore()
{
return false;
}
#endregion
}
}
|