BaseLine.xaml
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. <Border xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
  2. VerticalAlignment="Center" HorizontalAlignment="Center" Padding="4" BorderThickness="1" BorderBrush="#767676" Background="#e4ecf7">
  3. <StackPanel>
  4. <TextBlock TextWrapping="Wrap" FontSize="30" Background="Red" FontWeight="Bold">
  5. Baseline<Run FontSize="20" BaselineAlignment="Top">2</Run>
  6. <InlineUIContainer BaselineAlignment="Bottom"><Border Width="20" Height="20" Background="Gold"/>
  7. </InlineUIContainer><InlineUIContainer BaselineAlignment="Center"><Border Width="20" Height="20" Background="Green"/>
  8. </InlineUIContainer><InlineUIContainer BaselineAlignment="Top"> <Border Width="20" Height="20" Background="White"/></InlineUIContainer>
  9. <Run>Sample Text</Run>
  10. </TextBlock>
  11. </StackPanel>
  12. </Border>