Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

FlowDocumentにコントロールをホストする

アプリ実行


ソースコード

App.xaml
<Application x:Class="HelloWorld.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             StartupUri="MainWindow.xaml">
</Application>
MainWindow.xaml
<Window x:Class="HellloWorld.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="200" Width="400">
    <FlowDocument>
        <Paragraph>
            はじめまして,
            <Run FontWeight="Bold">太い線</Run> ,
            <Run FontStyle="Italic">イタリック</Run> ,
            <Run TextDecorations="Underline">下線</Run>
        </Paragraph>
        <Paragraph>
            こんにちは
            <Rectangle Width="100" Height="10" Fill="Red"></Rectangle>
        </Paragraph>
    </FlowDocument>
</Window>