Skip to content

Commit be96aa2

Browse files
committed
997111 - highlighted importent lines
1 parent e9ac2f7 commit be96aa2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

wpf/Kanban-Board/Cards.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ An interactive tooltip provides additional details about the cards on hovering t
195195
To enable tooltip for the kanban cards, use the `IsToolTipEnabled` property of [SfKanban](https://help.syncfusion.com/cr/winui/Syncfusion.UI.Xaml.Kanban.SfKanban.html). By default, `IsToolTipEnabled` is set to `false.` To provide users with additional information or context about cards, simply set this property to true.
196196

197197
{% tabs %}
198-
{% highlight xaml %}
198+
{% highlight xaml hl_lines="2" %}
199199

200200
<kanban:SfKanban x:Name="kanban"
201201
IsToolTipEnabled="True"
@@ -206,7 +206,7 @@ To enable tooltip for the kanban cards, use the `IsToolTipEnabled` property of [
206206
</kanban:SfKanban>
207207

208208
{% endhighlight %}
209-
{% highlight C# %}
209+
{% highlight C# hl_lines="1" %}
210210

211211
this.kanban.IsToolTipEnabled = true;
212212

@@ -264,7 +264,7 @@ public class ViewModel
264264
task.Description = "Need to implement tooltip support for histogram series.";
265265
task.Category = "Closed";
266266
task.Tags = new string[] { "Bug Fixing" };
267-
task.ImageURL = new Uri("/Assets/People/People\People_Circle6.png", UriKind.RelativeOrAbsolute);
267+
task.ImageURL = new Uri("/Assets/People/People_Circle6.png", UriKind.RelativeOrAbsolute);
268268
Tasks.Add(task);
269269

270270
task = new KanbanModel();
@@ -287,7 +287,7 @@ You can customize the tooltip appearance by using the `ToolTipTemplate` property
287287
The following code example shows the usage of DataTemplate.
288288

289289
{% tabs %}
290-
{% highlight xaml %}
290+
{% highlight xaml hl_lines="2" %}
291291

292292
<kanban:SfKanban x:Name="kanban"
293293
IsToolTipEnabled="True"

0 commit comments

Comments
 (0)