tags:

views:

42

answers:

1

Hello, is it possible to use a GridView in a flow document? I'd need to be able to change the color of the header, perhaps even change the color of alternate rows. I've never used Documents before, but before jumping in, I need to know if this is possible; if not I'll have to look for a different solution.

Thanks in advance.

+2  A: 

Yes, but you need to wrap it in a BlockUIContainer. Fair warning, I have not tried this. I have only read about it.

<BlockUIContainer>
   <!-- Ordinary WPF controls here -->
</BlockUIContainer>
Jerry Bullard