Tooltip.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" MaxWidth="212">
  3. <Border.Background>
  4. <LinearGradientBrush StartPoint="0, 0" EndPoint="0,1">
  5. <GradientStop Color="#ffffff" Offset="0"/>
  6. <GradientStop Color="#c9d9ef" Offset="1"/>
  7. </LinearGradientBrush>
  8. </Border.Background>
  9. <StackPanel TextBlock.FontFamily="Tahoma">
  10. <TextBlock Padding="1, 3, 1, 3" FontWeight="Bold">Change Case</TextBlock>
  11. <TextBlock Padding="9, 6, 30, 7" TextWrapping="Wrap">Change all the selected text to UPPERCASE, lowercase, or other common capitalizations.</TextBlock>
  12. <Border Height="1" Background="#9ebbdd" />
  13. <Border Height="1" Background="White" />
  14. <StackPanel Margin="1, 7, 0, 3" Orientation="Horizontal">
  15. <Image Source="file://Help.bmp"/>
  16. <TextBlock Margin="7, 0, 0, 0" VerticalAlignment="Center" FontWeight="Bold">Press F1 for more help.</TextBlock>
  17. </StackPanel>
  18. </StackPanel>
  19. </Border>