<Page
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <FlowDocumentReader>
    <FlowDocument>
      <Paragraph FontSize="24"
                 FontWeight="Bold">Instructions for Use</Paragraph>
      <Paragraph>
        You are now looking at the state of the art in UI technology as demonstrated by Mike Taulty :-)
      </Paragraph>
      <BlockUIContainer>
        <Grid>
          <Grid.RowDefinitions>
            <RowDefinition/>
            <RowDefinition/>
            <RowDefinition/>
            <RowDefinition/>
          </Grid.RowDefinitions>
          <Grid.ColumnDefinitions>
            <ColumnDefinition/>
            <ColumnDefinition/>
          </Grid.ColumnDefinitions>
          <Rectangle RadiusX="10"
                     RadiusY="10"
                     Fill="Gray"
                     Stroke="Black"
                     Grid.RowSpan="4"
                     Grid.ColumnSpan="2"/>
          <TextBox Grid.Column="1"
                   Margin="5"/>
          <TextBlock Text="Value 1"
                     VerticalAlignment="Center"
                     HorizontalAlignment="Center"/>
          <TextBox Grid.Column="1"
                   Grid.Row="1"
                   Margin="5"/>
          <TextBlock Text="Value 2"
                     VerticalAlignment="Center"
                     HorizontalAlignment="Center"
                     Grid.Row="1"/>
          <Button Grid.Row="2"
                  Grid.Column="1"
                  Content="Add"
                  FontSize="18"
                  Margin="5"/>
          <TextBlock Text="Result"
                     VerticalAlignment="Center"
                     HorizontalAlignment="Center"
                     Grid.Row="3"/>
          <TextBox Grid.Column="1"
                   Grid.Row="3"
                   Margin="5"/>
        </Grid>
      </BlockUIContainer>
      <Paragraph>
        Should you want to make use of this UI, you need to enter a value for the text box marked "Value 1" and a value
        for the text box marked "Value 2" and then you need to click the "Add" button.
      </Paragraph>
      <Paragraph>
        Remember that you can make notes on this set of instructions should you need to refer to them at a
        later point.
      </Paragraph>
      <Paragraph>
        Also wanted to talk about annotations here but not sure I can switch that on purely in XAML.
      </Paragraph>
    </FlowDocument>
  </FlowDocumentReader>
</Page>
