Skip to content

198046-Coverage-redirect-links-WPF-Docs #1690

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: hotfix/hotfix-v28.2.3
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions wpf/Classic/Notify-Icon/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ Refer to the [control dependencies](https://help.syncfusion.com/wpf/control-depe
Further information on installing the NuGet package can be found in the following link:
[How to install nuget packages](https://help.syncfusion.com/wpf/visual-studio-integration/nuget-packages).

You can also use the [Syncfusion Reference Manager](https://help.syncfusion.com/wpf/visual-studio-integration/visual-studio-extensions/add-references) to refer to the NotifyIcon's dependent assemblies.
You can also use the [Syncfusion Reference Manager](https://help.syncfusion.com/wpf/visual-studio-integration/add-references) to refer to the NotifyIcon's dependent assemblies.

## Creating an application with NotifyIcon control

In this walkthrough, you will create a WPF application that contains the NotifyIcon control.

## Creating a project

Create a new WPF project to show the [NotifyIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.NotifyIcon.html) control in Visual Studio.
Create a new WPF project to show the [NotifyIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.html) control in Visual Studio.

## Adding the control manually in XAML

Expand Down Expand Up @@ -118,7 +118,7 @@ namespace NotifyIcon_GettingStarted

## Show the notify icon

You can set the icon to the [NotifyIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.NotifyIcon.html) control using the [Icon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.NotifyIcon.html#Syncfusion_Windows_Tools_Controls_NotifyIcon_Icon) property and then display the notify icon by setting the [ShowInTaskBar](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.NotifyIcon.html#Syncfusion_Windows_Tools_Controls_NotifyIcon_ShowInTaskBar) property to `true`.
You can set the icon to the [NotifyIcon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.NotifyIcon.html) control using the [Icon](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.NotifyIcon.html#Syncfusion_Windows_Tools_Controls_NotifyIcon_Icon) property and then display the notify icon by setting the [ShowInTaskBar](https://help.syncfusion.com/cr/wpf#Syncfusion_Windows_Tools_Controls_NotifyIcon_ShowInTaskBar/Syncfusion.html) property to `true`.

{% tabs %}

Expand All @@ -134,7 +134,7 @@ You can set the icon to the [NotifyIcon](https://help.syncfusion.com/cr/wpf/Sync

## Text

You can use the [Text](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.NotifyIcon.html#Syncfusion_Windows_Tools_Controls_NotifyIcon_Text) property to add text to the `NotifyIcon` control. It will be shown on the notify icon while hovering.
You can use the [Text](https://help.syncfusion.com/cr/wpf#Syncfusion_Windows_Tools_Controls_NotifyIcon_Tex/Syncfusion.htmlt) property to add text to the `NotifyIcon` control. It will be shown on the notify icon while hovering.

{% tabs %}

Expand All @@ -156,7 +156,7 @@ notify.Text = "Notify me";

## Tooltip

You can show the tooltip for `NotifyIcon` control by using the [ShowBalloonTip](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.NotifyIcon.html#Syncfusion_Windows_Tools_Controls_NotifyIcon_ShowBalloonTip_System_Int32_) method. You can also add a title and text by using the [BalloonTipTitle](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.NotifyIcon.html#Syncfusion_Windows_Tools_Controls_NotifyIcon_BalloonTipTitle) and [BalloonTipText](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.NotifyIcon.html#Syncfusion_Windows_Tools_Controls_NotifyIcon_BalloonTipText) properties. You can enable the title by setting the [BalloonTipHeaderVisibility](https://help.syncfusion.com/cr/wpf/Syncfusion.Windows.Tools.Controls.NotifyIcon.html#Syncfusion_Windows_Tools_Controls_NotifyIcon_BalloonTipHeaderVisibility) property to `true`.
You can show the tooltip for `NotifyIcon` control by using the [ShowBalloonTip](https://help.syncfusion.com/cr/wpf#Syncfusion_Windows_Tools_Controls_NotifyIcon_ShowBalloonTip_System_Int32_/Syncfusion.html/Syncfusion.html) method. You can also add a title and text by using the [BalloonTipTitle](https://help.syncfusion.com/cr/wpf#Syncfusion_Windows_Tools_Controls_NotifyIcon_BalloonTipTitle/Syncfusion.html/Syncfusion.html) and [BalloonTipText](https://help.syncfusion.com/cr/wpf#Syncfusion_Windows_Tools_Controls_NotifyIcon_BalloonTipText/Syncfusion.html/Syncfusion.html) properties. You can enable the title by setting the [BalloonTipHeaderVisibility](https://help.syncfusion.com/cr/wpf#Syncfusion_Windows_Tools_Controls_NotifyIcon_BalloonTipHeaderVisibility/Syncfusion.html) property to `true`.

{% tabs %}

Expand Down
4 changes: 2 additions & 2 deletions wpf/DateTimePicker/Getting-Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ dateTimeEdit.DateTime = new DateTime(2010, 07, 05);

![Setting date in WPF DateTimeEdit](Getting-Started_images/wpf-datetimeedit-setting-date.png)

N> [View sample in GitHub](https://github.com/SyncfusionExamples/wpf-date-time-edit-examples/tree/master/Samples/SettingDate).
N> [View sample in GitHub](https://github.com/SyncfusionExamples/wpf-datetimepicker-examples/tree/master/Samples/SettingDate).

## Binding date time value

Expand Down Expand Up @@ -511,7 +511,7 @@ private void DateTimeEdit_Loaded(object sender, RoutedEventArgs e)

![Block particular dates in WPF DateTimeEdit](Maximum-and-Minimum-Value_images/BlackOutDays.gif)

N> [View sample in GitHub](https://github.com/SyncfusionExamples/wpf-date-time-edit-examples/tree/master/Samples/BlackOutdates).
N> [View sample in GitHub](https://github.com/SyncfusionExamples/wpf-datetimepicker-examples/tree/master/Samples/BlackOutdates).

## Theme

Expand Down