Files
ShrlAlgoToolkit/AntDesignWPF/Controls/Tumb/ThumbContentControlAutomationPeer.cs
2025-07-31 20:12:24 +08:00

24 lines
590 B
C#

namespace AntDesignWPF.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";
}
}
}