0

I see these images in design but when I run the program no images
I even see the ????? when I run the program
How do I get these images to display when I run the program?

<FlowDocumentScrollViewer>
    <FlowDocument Style="{StaticResource Flow01}">
            <Table CellSpacing="2">
                <Table.Columns>
                    <TableColumn/>
                    <TableColumn/>
                    <TableColumn/>
                </Table.Columns>
                <TableRowGroup>
                    <TableRow >
                        <TableCell>
                            <Paragraph Style="{StaticResource Par0}">
                                ∩ Intersection
                            </Paragraph>
                        </TableCell>
                        <TableCell>
                            <Paragraph Style="{StaticResource Par0}">
                                ∪ Union
                            </Paragraph>
                        </TableCell>
                        <TableCell>
                            <Paragraph Style="{StaticResource Par0}">
                                - Minus
                            </Paragraph>
                        </TableCell>
                    </TableRow>
                    <TableRow >
                        <TableCell>
                            <Paragraph >?????</Paragraph>
                            <BlockUIContainer>
                                <Image Source="Images\VennIntersection.png" />
                            </BlockUIContainer>
                        </TableCell>
                        <TableCell>
                            <BlockUIContainer>
                                <Image Source="Images\VennUnion.png" />
                            </BlockUIContainer>
                        </TableCell>
                        <TableCell>
                            <BlockUIContainer>
                                <Image Source="Images\VennMinusM.png" />
                            </BlockUIContainer>
                        </TableCell>
                    </TableRow>

                    <TableRow >
                        <TableCell>
                            <Paragraph Style="{StaticResource Par0}">
                                ∩ Intersection
                            </Paragraph>
                        </TableCell>
                        <TableCell>
                            <Paragraph Style="{StaticResource Par0}">
                                ∪ Union
                            </Paragraph>
                        </TableCell>
                        <TableCell>
                            <Paragraph Style="{StaticResource Par0}">
                                - Minus
                            </Paragraph>
                        </TableCell>
                    </TableRow>

                </TableRowGroup>
            </Table>
        </FlowDocument>
</FlowDocumentScrollViewer>
jeffm
  • 3,120
  • 1
  • 34
  • 57
paparazzo
  • 44,497
  • 23
  • 105
  • 176

1 Answers1

0

I got it to work with add existing item and take out the Images\
But I really hope there is a better answer

paparazzo
  • 44,497
  • 23
  • 105
  • 176