File: src\Framework\System\Windows\Automation\Peers\ToolTipAutomationPeer.cs
Project: wpf\PresentationFramework.csproj (PresentationFramework)
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Interop;
using System.Windows.Media;
using System.ComponentModel;
 
namespace System.Windows.Automation.Peers
{
    /// 
    public class ToolTipAutomationPeer : FrameworkElementAutomationPeer
    {
        ///
        public ToolTipAutomationPeer(ToolTip owner) : base(owner)
        { }
 
        ///
        override protected string GetClassNameCore()
        {
            return "ToolTip";
        }
 
        ///
        protected override AutomationControlType GetAutomationControlTypeCore()
        {
            return AutomationControlType.ToolTip;
        }
    }
}