0

Is it possible to use a GridView in a FlowDocument? 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 FlowDocuments 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.

Dave Clemmer
  • 3,741
  • 12
  • 49
  • 72
Carlo
  • 25,602
  • 32
  • 128
  • 176

1 Answers1

4

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
  • 6,116
  • 18
  • 27