Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Basically I have some CheckBox controls I want to use to show or hide certain GridViewColumns at runtime. But I failed to find a sort of IsVisible property that I can set to false. Or even a Visibility property that exist only on GridViewColumnHeader.

Any ideas on how to do this?

share|improve this question

1 Answer

up vote 3 down vote accepted

Set the GridViewColumn Width property to 0. This will achieve the same effect as hiding it. This can be achieved with DataBinding and a Converter.

share|improve this answer
Thanks, I did it but the cells aren't hidden after doing this. I want the whole column to be gone as if I resized the column to nothing by hand at runtime. – Joan Venge Apr 6 '11 at 23:58
This works in the designer. Just set the width of a column to 0 and you'll see it disappear. If it isn't working, then there is an issue in your implementation. – Dave White Apr 7 '11 at 0:18
Thanks it works, I got tripped by a WPF gimmick I asked here: stackoverflow.com/questions/5574613/… – Joan Venge Apr 7 '11 at 0:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.