diff --git a/wpf/Kanban-Board/Getting-started.md b/wpf/Kanban-Board/Getting-started.md index 2c2d46fc10..b3d0bda03e 100644 --- a/wpf/Kanban-Board/Getting-started.md +++ b/wpf/Kanban-Board/Getting-started.md @@ -193,6 +193,8 @@ public class ViewModel {% endhighlight %} {% endtabs %} +![wpf-kanban-board-column-using-default-model](sfkanban_images/wpf-kanban-board-column-using-default-model.png) + N> View the sample in [`GitHub`](https://github.com/SyncfusionExamples/Getting-started-in-SfKanban-WPF). #### Creating the custom model tasks with data mapping @@ -214,7 +216,7 @@ Alternatively, you can manually define columns by setting [`AutoGenerateColumns` Let’s look at the practical code example: {% tabs %} -{% highlight XAML hl_lines="2 3 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27" %} +{% highlight XAML hl_lines="2 3 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26" %} - - + + - - - - + TextAlignment="Center" + FontWeight="Bold" + FontSize="14" /> + - + @@ -304,6 +305,8 @@ public class ViewModel {% endhighlight %} {% endtabs %} +![wpf-kanban-board-column-using-custom-model](sfkanban_images/wpf-kanban-board-column-using-custom-model.png) + You can also set [`AutoGenerateColumns`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Kanban.SfKanban.html#Syncfusion_UI_Xaml_Kanban_SfKanban_AutoGenerateColumns) property to true in which you don’t need to define the columns as mentioned in the above example. This will create columns depending on the ColumnMappingPath property for all the distinct values in ItemsSource. N> diff --git a/wpf/Kanban-Board/SfKanban_images/wpf-kanban-board-column-using-custom-model.png b/wpf/Kanban-Board/SfKanban_images/wpf-kanban-board-column-using-custom-model.png new file mode 100644 index 0000000000..94b553a8a5 Binary files /dev/null and b/wpf/Kanban-Board/SfKanban_images/wpf-kanban-board-column-using-custom-model.png differ diff --git a/wpf/Kanban-Board/SfKanban_images/wpf-kanban-board-column-using-default-model.png b/wpf/Kanban-Board/SfKanban_images/wpf-kanban-board-column-using-default-model.png new file mode 100644 index 0000000000..7911c3d429 Binary files /dev/null and b/wpf/Kanban-Board/SfKanban_images/wpf-kanban-board-column-using-default-model.png differ