0

これらの画像はデザインに表示されますが、プログラムを実行すると画像が表示されず
、????? も表示されます。プログラムの実行時 プログラムの実行
時にこれらの画像を表示するにはどうすればよいですか?

<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>
4

1 に答える 1

0

既存のアイテムを追加して画像を取り出すことができました\
しかし、より良い答えがあることを本当に願っています

于 2014-10-04T00:15:40.363 に答える