Files
ShrlAlgoToolkit/AntdWpf/Controls/ThumbContentControlAutomationPeer.cs
ShrlAlgo 4d35cadb56 更新
2025-07-11 09:20:23 +08:00

24 lines
585 B
C#

namespace AntdWpf.Controls
{
using System.Windows;
using System.Windows.Automation.Peers;
public class ThumbContentControlAutomationPeer : FrameworkElementAutomationPeer
{
public ThumbContentControlAutomationPeer(FrameworkElement owner)
: base(owner)
{
}
protected override AutomationControlType GetAutomationControlTypeCore()
{
return AutomationControlType.Custom;
}
protected override string GetClassNameCore()
{
return "ThumbContentControl";
}
}
}