I know this question has been asked before, but I haven't seen a good, simple answer.
I want to add a GridViewSelect column that is bound to my ViewModel. I know it's been said that the built in GridViewSelectColumn simply doesn't support this. And that there are some virtualization issues if you try to bind to the actual GridViewRow/Cell.
I just want a nice simple, generic (not tied to my specific model, and not reliant on Bindings without Converters) implementation. I'd rather not add a dependency on Blend Interactivity.
Can this be accomplished by simply sub-classing GridViewSelectColumn or GridViewDataColumn? Or can I set the cell header style to be bound somehow?
I'm just looking for a simpler implementation than what I've seen already.
Thank you.
I want to add a GridViewSelect column that is bound to my ViewModel. I know it's been said that the built in GridViewSelectColumn simply doesn't support this. And that there are some virtualization issues if you try to bind to the actual GridViewRow/Cell.
I just want a nice simple, generic (not tied to my specific model, and not reliant on Bindings without Converters) implementation. I'd rather not add a dependency on Blend Interactivity.
Can this be accomplished by simply sub-classing GridViewSelectColumn or GridViewDataColumn? Or can I set the cell header style to be bound somehow?
I'm just looking for a simpler implementation than what I've seen already.
Thank you.