Sic.Framework-Nanjing-Baishi/MECF.Framework.UI.Client/DataGridTransform/DataGrid/Microsoft/Windows/Automation/Peers/DataGridDetailsPresenterAut...

44 lines
1.1 KiB
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
using System;
using System.Collections.Generic;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
using System.Windows.Controls;
using EGC = ExtendedGrid.Microsoft.Windows.Controls;
namespace ExtendedGrid.Microsoft.Windows.Controls
{
/// <summary>
/// AutomationPeer for DataGridDetailsPresenter
/// </summary>
public sealed class DataGridDetailsPresenterAutomationPeer : FrameworkElementAutomationPeer
{
#region Constructors
/// <summary>
/// AutomationPeer for DataGridDetailsPresenter
/// </summary>
/// <param name="owner">DataGridDetailsPresenter</param>
public DataGridDetailsPresenterAutomationPeer(EGC.DataGridDetailsPresenter owner)
: base(owner)
{
}
#endregion
#region AutomationPeer Overrides
///
protected override string GetClassNameCore()
{
return this.Owner.GetType().Name;
}
///
protected override bool IsContentElementCore()
{
return false;
}
#endregion
}
}