My question is: By user WPF controls FlowDocument , how to generate a symmetrical layout in one flowDocument?

My code is

<Grid Name="grid1">
<FlowDocumentScrollViewer Name="name1" Margin="6,0,17,0">
<FlowDocument  >
<Paragraph  >
<Figure   HorizontalAnchor="PageLeft" VerticalAnchor="PageTop"
          Width="0.5content">
<BlockUIContainer>
 <Button >HelloTwo</Button>
</BlockUIContainer>
</Figure>
<Figure   HorizontalAnchor="PageRight" VerticalAnchor="PageTop"
          Width="0.5content">
<BlockUIContainer>
 <Button >HelloTwo</Button>
</BlockUIContainer>
</Figure>
</Paragraph>
</FlowDocument>
 </FlowDocumentScrollViewer>
</Grid>    

I expect result is, I want they at same line and positon

So how should I layout ? Thank you.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

You should use FlowDocumentReader or FlowDocumentPageViewer. Using FlowDocumentScrollViewer, Figure is treated as different anchored block, and can't be paired side by side.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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