From 5ae9b042eab3749c036ae66e7bc11fe497244528 Mon Sep 17 00:00:00 2001 From: AARTHI Date: Mon, 22 Dec 2025 15:02:52 +0530 Subject: [PATCH] Addressed review changes. --- wpf/Kanban-Board/Cards.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/wpf/Kanban-Board/Cards.md b/wpf/Kanban-Board/Cards.md index 8e8487a91..96369f97c 100644 --- a/wpf/Kanban-Board/Cards.md +++ b/wpf/Kanban-Board/Cards.md @@ -331,6 +331,12 @@ The following code example shows the usage of DataTemplate. +{% endhighlight %} +{% highlight C# hl_lines="1" %} + +this.kanban.IsToolTipEnabled = true; +this.kanban.ItemsSource = (this.DataContext as KanbanViewModel)?.Tasks; + {% endhighlight %} {% highlight C# tabtitle="ViewModel.cs" %}