Skip to content

This repository contains the sample that how to access the help button in WPF Ribbon

Notifications You must be signed in to change notification settings

SyncfusionExamples/How-to-access-the-help-button-in-WPF-Ribbon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

How-to-access-the-help-button-in-WPF-Ribbon

This repository contains the sample that how to access the help button in WPF Ribbon

The help button in our WPF Ribbon control is used to show the notification or migrate to the desired help links as the same behavior exist in MS file explorer.

The help button can be shown in our WPF Ribbon control by enabling the ShowHelpButton. Refer the below code for your reference.

The functionality of help button can be handled based on your requirement by invoking the click event of TitleBarButton template. Refer the below code for your reference.

<syncfusion:WindowTitleBarButton
       x:Name="HelpButton"
       Width="29"
       Height="22"
       Click="HelpButton_Click_1"
       Style="{StaticResource HelpButtonStyle}"
       Visibility="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type syncfusion:RibbonWindow}}, Path=ShowHelpButton, Converter={StaticResource BooleanToVisibilityConverter}}" />
private void HelpButton_Click_1(object sender, RoutedEventArgs e)
{
   //navigate to url link
   System.Diagnostics.Process.Start("https://help.syncfusion.com/wpf/welcome-to-syncfusion-essential-wpf");
}

Output:

WPF_Ribbon_ShowHelpButton

About

This repository contains the sample that how to access the help button in WPF Ribbon

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages