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

对话框与窗口

开发平台:

Visual C++

  1. <Page xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml' >
  2. <Border Padding = "4" BorderThickness="3" BorderBrush="Red" VerticalAlignment="Center" HorizontalAlignment="Center">
  3. <StackPanel Background="Gold" Orientation="Horizontal" >
  4. <StackPanel.Style>
  5. <Style TargetType="StackPanel">
  6. <Style.Triggers>
  7. <Trigger Property="IsMouseOver" Value="True">
  8. <Trigger.Setters>
  9. <Setter Property="TextBlock.Foreground" Value="Blue"/>
  10. </Trigger.Setters>
  11. </Trigger>
  12. </Style.Triggers>
  13. </Style>
  14. </StackPanel.Style>
  15. <Image Cursor="Hand" Margin="-25, -25, 0, 0"  Source="file://Blue Lace 16.bmp"/>
  16. <TextBlock Padding = "3" VerticalAlignment="Center">
  17. Image (<Image Cursor="Hand" Width="9" Height="9" Source="file://Blue Lace 16.bmp"/>) and Text
  18. </TextBlock>
  19. </StackPanel>
  20. </Border>
  21. </Page>