Do the TaskCards have the ability to be selected / deselected? How can it be bound to a viewmodel?
I already tried to modify the TaskBoard / TaskColumn templates to act like a ListBox without any success.
Thank you!
[Modified 4 years ago]
Do the TaskCards have the ability to be selected / deselected? How can it be bound to a viewmodel?
I already tried to modify the TaskBoard / TaskColumn templates to act like a ListBox without any success.
Thank you!
[Modified 4 years ago]
Hi Dan,
The TaskBoard and TaskColumn controls are just ItemsControls and don't have a selection concept built in. That being said, everything is MVVM-based so you certainly could do something like have an IsSelected property on your view-model and then have the card DataTemplate show different UI when that property is true. Or even have a CheckBox control in the card that is bound to that property.
Please log in to a validated account to post comments.