skip navigation
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • AI Coding Assistants
    • Embedded Reporting
    • Document Processing Libraries
    • SSO Account Sign-in

    Web

    Kendo UI UI for Angular UI for Vue UI for jQuery KendoReact UI for Blazor UI for ASP.NET Core UI for ASP.NET MVC UI for ASP.NET AJAX

    Mobile

    UI for .NET MAUI

    Document Management

    Telerik Document Processing

    Desktop

    UI for .NET MAUI UI for WinUI UI for WinForms UI for WPF

    Reporting

    Telerik Reporting Telerik Report Server

    Testing & Mocking

    Test Studio Telerik JustMock

    CMS

    Sitefinity

    AI Productivity Tools

    AI Coding Assistants

    UI/UX Tools

    ThemeBuilder Design System Kit Templates and Building Blocks

    Debugging

    Fiddler Fiddler Everywhere Fiddler Classic Fiddler Everywhere Reporter FiddlerCore

    Free Tools

    KendoReact Free VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Roadmap
    • Release History
  • Support and Learning

    • Support and Learning Hub
    • First Steps
    • Docs
    • Demos
    • Virtual Classroom
    • Forums
    • Videos
    • Blogs
    • Accessibility
    • Submit a Ticket

    Productivity and Design Tools

    • Visual Studio Extensions
    • Visual Studio Templates
    • Embedded Reporting
  • Pricing
  • Shopping cart
    • Account Overview
    • Your Licenses
    • Downloads
    • Support Center
    • Forum Profile
    • Payment Methods
    • Edit Profile
    • Log out
  • Login
  • Contact Us
  • Try now

Class KeyTipService

Class used to Enable/Disable key tips for RadRibbonView control.

Inheritance
System.Object
KeyTipService
Namespace: Telerik.Windows.Controls.RibbonView
Assembly: Telerik.Windows.Controls.RibbonView.dll

Syntax

public class KeyTipService : DependencyObject

Fields

AccessKeyProperty

Identifies AccessKey Attached Property.

Declaration
public static readonly DependencyProperty AccessKeyProperty
Field Value
System.Windows.DependencyProperty

AccessKeysProperty

Identifies AccessKeys Attached Property.

Declaration
public static readonly DependencyProperty AccessKeysProperty
Field Value
System.Windows.DependencyProperty

AccessTextProperty

Identifies Access Text Attached Property.

Declaration
public static readonly DependencyProperty AccessTextProperty
Field Value
System.Windows.DependencyProperty

ActivationModeProperty

Identifies ActivationMode Attached Property.

Declaration
public static readonly DependencyProperty ActivationModeProperty
Field Value
System.Windows.DependencyProperty

ActivationProperty

Identifies Activation Attached Property.

Declaration
public static readonly DependencyProperty ActivationProperty
Field Value
System.Windows.DependencyProperty

AltAccessTextProperty

Identifies AltAccessText Attached Property.

Declaration
public static readonly DependencyProperty AltAccessTextProperty
Field Value
System.Windows.DependencyProperty

IsKeyboardNavigationEnabledProperty

Identifies Access IsKeyboardNavigationEnabled property.

Declaration
public static readonly DependencyProperty IsKeyboardNavigationEnabledProperty
Field Value
System.Windows.DependencyProperty

IsKeyTipsEnabledProperty

Identifies IsKeyTipsEnabled Attached Property.

Declaration
public static readonly DependencyProperty IsKeyTipsEnabledProperty
Field Value
System.Windows.DependencyProperty

Methods

GetAccessKey(DependencyObject)

Get access key gesture attached property, that will enable key tips.

Declaration
public static KeyGesture GetAccessKey(DependencyObject obj)
Parameters
System.Windows.DependencyObject obj

Returns
System.Windows.Input.KeyGesture

GetAccessKeys(DependencyObject)

Get access keys gesture attached property, that will enable key tips.

Declaration
public static IEnumerable<KeyGesture> GetAccessKeys(DependencyObject obj)
Parameters
System.Windows.DependencyObject obj

Returns
System.Collections.Generic.IEnumerable<System.Windows.Input.KeyGesture>

GetAccessText(DependencyObject)

Get access key string attached property.

Declaration
public static string GetAccessText(DependencyObject obj)
Parameters
System.Windows.DependencyObject obj

Returns
System.String

GetActivation(DependencyObject)

Get activation object, that provides event for executing key tip.

Declaration
public static KeyTipActivation GetActivation(DependencyObject obj)
Parameters
System.Windows.DependencyObject obj

Returns
KeyTipActivation

GetActivationMode(DependencyObject)

Get ActivationMode attached property, that will be used when the key tips are enabled.

Declaration
public static ActivationMode GetActivationMode(DependencyObject obj)
Parameters
System.Windows.DependencyObject obj

Returns
ActivationMode

GetAltAccessText(DependencyObject)

Get alternative access key string attached property.

Declaration
public static string GetAltAccessText(DependencyObject obj)
Parameters
System.Windows.DependencyObject obj

Returns
System.String

GetIsKeyboardNavigationEnabled(DependencyObject)

Gets the IsKeyboardNavigationEnabled property which determines if keyboard navigation is enabled for a particular element.

Declaration
public static bool GetIsKeyboardNavigationEnabled(DependencyObject obj)
Parameters
System.Windows.DependencyObject obj

Returns
System.Boolean

GetIsKeyTipsEnabled(DependencyObject)

Get value determining whether access key tips are enable/disable.

Declaration
public static bool GetIsKeyTipsEnabled(DependencyObject obj)
Parameters
System.Windows.DependencyObject obj

Returns
System.Boolean

SetAccessKey(DependencyObject, KeyGesture)

Set access key gesture attached property, that will enable key tips.

Declaration
public static void SetAccessKey(DependencyObject obj, KeyGesture value)
Parameters
System.Windows.DependencyObject obj

System.Windows.Input.KeyGesture value

SetAccessKeys(DependencyObject, IEnumerable<KeyGesture>)

Sets access keys gesture attached property, that will enable key tips.

Declaration
public static void SetAccessKeys(DependencyObject obj, IEnumerable<KeyGesture> value)
Parameters
System.Windows.DependencyObject obj

System.Collections.Generic.IEnumerable<System.Windows.Input.KeyGesture> value

SetAccessText(DependencyObject, String)

Set access key string attached property.

Declaration
public static void SetAccessText(DependencyObject obj, string value)
Parameters
System.Windows.DependencyObject obj

System.String value

SetActivation(DependencyObject, KeyTipActivation)

Set activation object, that provides event for executing key tip.

Declaration
public static void SetActivation(DependencyObject obj, KeyTipActivation value)
Parameters
System.Windows.DependencyObject obj

KeyTipActivation value

SetActivationMode(DependencyObject, ActivationMode)

Set ActivationMode attached property, that will be used when the key tips are enabled.

Declaration
public static void SetActivationMode(DependencyObject obj, ActivationMode value)
Parameters
System.Windows.DependencyObject obj

ActivationMode value

SetAltAccessText(DependencyObject, String)

Set alternative access key string attached property.

Declaration
public static void SetAltAccessText(DependencyObject obj, string value)
Parameters
System.Windows.DependencyObject obj

System.String value

SetIsKeyboardNavigationEnabled(DependencyObject, Boolean)

Sets the IsKeyboardNavigationEnabled property which determines if keyboard navigation is enabled for a particular element.

Declaration
public static void SetIsKeyboardNavigationEnabled(DependencyObject obj, bool value)
Parameters
System.Windows.DependencyObject obj

System.Boolean value

SetIsKeyTipsEnabled(DependencyObject, Boolean)

Set value to enable/disable access key tips.

Declaration
public static void SetIsKeyTipsEnabled(DependencyObject obj, bool value)
Parameters
System.Windows.DependencyObject obj

System.Boolean value

Extension Methods

CollectionExtensions.ToEnumerable<T>(T)
EnumerableExtensions.ToEnumerable<T>(T)
Getting Started
  • Install Now
  • Demos
  • SDK Samples Browser
  • Sample Applications
Support Resources
  • Code Library
  • Knowledge Base
  • MVVM Support
  • Videos
  • GitHub SDK Repository
Community
  • Forums
  • Blogs
  • XAML Feedback Portal
  • Document Processing Feedback Portal

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.