| File: Microsoft\Windows\Automation\Peers\RibbonCheckBoxAutomationPeer.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 RibbonCheckBox control. /// </summary> public class RibbonCheckBoxAutomationPeer : CheckBoxAutomationPeer { #region Constructors /// <summary> /// Initialize Automation Peer for RibbonCheckBox /// </summary> public RibbonCheckBoxAutomationPeer(RibbonCheckBox owner): base(owner) { } #endregion #region AutomationPeer overrides /// <summary> /// Get KeyTip of owner control /// </summary> /// <returns></returns> protected override string GetAccessKeyCore() { string accessKey = ((RibbonCheckBox)Owner).KeyTip; if (string.IsNullOrEmpty(accessKey)) { accessKey = base.GetAccessKeyCore(); } return accessKey; } /// <summary> /// Return class name for automation clients to display /// </summary> /// <returns></returns> protected override string GetClassNameCore() { return "RibbonCheckBox"; } /// <summary> /// Returns name for automation clients to display /// </summary> protected override string GetNameCore() { string name = base.GetNameCore(); if (String.IsNullOrEmpty(name)) { name = ((RibbonCheckBox)Owner).Label; } return name; } /// <summary> /// Returns help text /// </summary> protected override string GetHelpTextCore() { string helpText = base.GetHelpTextCore(); if (String.IsNullOrEmpty(helpText)) { RibbonToolTip toolTip = ((RibbonCheckBox)Owner).ToolTip as RibbonToolTip; if (toolTip != null) { helpText = toolTip.Description; } } return helpText; } #endregion } }