| File: Microsoft\Windows\Automation\Peers\RibbonRadioButtonAutomationPeer.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\System.Windows.Controls.Ribbon\System.Windows.Controls.Ribbon.csproj (System.Windows.Controls.Ribbon) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. #region Using declarations #if RIBBON_IN_FRAMEWORK using System.Windows.Controls.Ribbon; #if RIBBON_IN_FRAMEWORK namespace System.Windows.Automation.Peers #else namespace Microsoft.Windows.Automation.Peers #endif { #else using Microsoft.Windows.Controls.Ribbon; #endif #endregion /// <summary> /// An automation peer class which automates RibbonRadioButton control. /// </summary> public class RibbonRadioButtonAutomationPeer : RadioButtonAutomationPeer { #region Constructors /// <summary> /// Initialize Automation Peer for RibbonRadioButton /// </summary> public RibbonRadioButtonAutomationPeer(RibbonRadioButton owner): base(owner) { } #endregion #region AutomationPeer overrides /// <summary> /// Get KeyTip of owner control /// </summary> protected override string GetAccessKeyCore() { string accessKey = ((RibbonRadioButton)Owner).KeyTip; if (string.IsNullOrEmpty(accessKey)) { accessKey = base.GetAccessKeyCore(); } return accessKey; } /// <summary> /// Return class name for automation clients to display /// </summary> protected override string GetClassNameCore() { return "RibbonRadioButton"; } /// <summary> /// Returns name for automation clients to display /// </summary> protected override string GetNameCore() { string name = base.GetNameCore(); if (String.IsNullOrEmpty(name)) { name = ((RibbonRadioButton)Owner).Label; } return name; } /// <summary> /// Returns help text /// </summary> protected override string GetHelpTextCore() { string helpText = base.GetHelpTextCore(); if (String.IsNullOrEmpty(helpText)) { RibbonToolTip toolTip = ((RibbonRadioButton)Owner).ToolTip as RibbonToolTip; if (toolTip != null) { helpText = toolTip.Description; } } return helpText; } #endregion } }