Earlier Syncfusion provided me with code to define the Kanban card's lay out and content, by code, which was called instead of the built in card with:
Code: Select all
kanban.CardTemplate = new DataTemplate() // Use CardView in Helper to change lay-out (from Syncfusion support's sample) 10-3-2026
{
VisualTree = new FrameworkElementFactory(typeof(KanbanCardView))
};
They also suggested I could add the menu with a double click using the OnKanbanCardDoubleTapped method. By moving away the context menu creation code from the OnKanbanCardTapped method, this works but also not always, as the OnKanbanCardTapped again kicks in first and prevents the OnKanbanCardDoubleTapped to call. Anyhow, I don't need the contextmenu from a double click; the right mouse click is the logical solution.
In their on line Blazor sample showing many features, a contextmenu is not implemented in any of them. But it is very handy for common action like Add, Delete. See https://help.syncfusion.com/wpf/kanban- ... ng-started
Dick

