The requirement is to place a bookmark icon on the left side of a flowdocument hosted in a flowdocumentscrollviewer.

I am trying to achieve this with the following XAML and code:

<FlowDocumentScrollViewer Margin="0,8,20,0" BorderBrush="Black" BorderThickness="1" Name="fdsv"  Grid.Row="1">
        <FlowDocument ColumnWidth="400" IsOptimalParagraphEnabled="True" IsHyphenationEnabled="True" Name="fd">
            <Table >
                <Table.Columns>
                    <TableColumn Width="4*" />
                    <TableColumn Width="8*" />
                </Table.Columns>
                <TableRowGroup>
                    <TableRow>
                        <TableCell BorderBrush="Black" BorderThickness="1">
                            <BlockUIContainer>
                                <Canvas Name="c1" Width="100" Height="500">
                                    <Image Name="img1" Source="Bookmark.png" Visibility="Hidden" />
                                </Canvas>
                            </BlockUIContainer>
                        </TableCell>
                        <TableCell BorderBrush="Black" BorderThickness="1">
                            <Paragraph>
                                <LineBreak/>
                <LineBreak/>
                <LineBreak/>
                <LineBreak/>
                            </Paragraph>
                            <Paragraph Name="p1">
                                <TextBlock>3asd asdfas asdf</TextBlock>
                                <LineBreak/>
                            </Paragraph>
                        </TableCell>
                    </TableRow>
                </TableRowGroup>
            </Table>
        </FlowDocument>
    </FlowDocumentScrollViewer>

       TextPointer tp = p1.ContentStart;
        Rect r = tp.GetCharacterRect(LogicalDirection.Forward);
        System.Windows.Point loc = fdsv.PointToScreen(r.Location);
        img1.SetValue(Canvas.TopProperty, loc.Y);

This works as long as the content is less. I know that the pointtoscreen is most likely the issue. However, is there an alternative to this? I don't have the option of using FlowDocumentPageViewer.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.