Hello, I'm not having any success getting it to change the border color if a card item is clicked.
I looked at your other code examples and tried both the event handler and setter route as well as binding. My preference is to use binding to a property rather than an event handler.
I was able to getting the border to change dynamically - from black to red - by binding the BorderBrush to the IsMouseOver event in my Card Template as shown here, and it snaps back to black when the mouse leaves the card. However with other properties such as IsFocused and IsMouseCaptured these have no effect.
BorderBrush="{Binding IsMouseOver, Converter={StaticResource HighlightConverter}, Mode=OneWay, RelativeSource={RelativeSource Self}}"Also if I tried the event handler approach, it doesn't seem possible to set the Border color that way. The following code does not change the border color.
private void KbBoard_CardTapped(object sender, Syncfusion.UI.Xaml.Kanban.KanbanTappedEventArgs e) { e.SelectedCard.BorderBrush = Brushes.Red; }Any suggestions?