Skip to content
Merged
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
8 changes: 4 additions & 4 deletions wpf/Kanban-Board/Getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ Now the Syncfusion.SfKanban.WPF reference is added to the application references

![Adding SfKanban from toolbox Xaml Reference](sfkanban_images/wpf-kanban-board-xaml-reference.png)

### Populate WPF Kanban item source
## Populate WPF Kanban item source

This section explains how to populate the WPF Kanban control's `ItemSource` by creating and binding both default and custom task data models.

#### Creating the default model tasks
### Creating the default model tasks

* **Define the View Model:** Create a view model class to set values for the properties listed in the [`KanbanModel`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Kanban.KanbanModel.html) class as shown in the following example code. Each [`KanbanModel`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Kanban.KanbanModel.html) instance represent a card in Kanban control.

Expand Down Expand Up @@ -109,7 +109,7 @@ The following sample code demonstrates this process in action:
</Grid>

{% endhighlight %}
{% highlight C# hl_lines="1 2 3 4 5 7 8 9 10 11 13 14 15 16 17 19 20 21 22 23 24 25" %}
{% highlight C# hl_lines="1 2 3 4 5 7 8 9 10 11 13 14 15 16 17 19 20 21 22 23 25" %}

SfKanban kanban = new SfKanban()
{
Expand Down Expand Up @@ -197,7 +197,7 @@ public class ViewModel

N> View the sample in [`GitHub`](https://github.com/SyncfusionExamples/Getting-started-in-SfKanban-WPF).

#### Creating the custom model tasks with data mapping
### Creating the custom model tasks with data mapping

You can also map custom data model to our Kanban control. The following steps demonstrate how to render tasks using the [WPF Kanban](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Kanban.SfKanban.html) control with respective custom data properties.

Expand Down