using System.Windows.Automation.Peers; namespace WPFluent.Controls; public class PersonPictureAutomationPeer(PersonPicture owner) : FrameworkElementAutomationPeer(owner) { protected override AutomationControlType GetAutomationControlTypeCore() { return AutomationControlType.Text; } protected override string GetClassNameCore() { return nameof(PersonPicture); } }