Image.xaml
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:1k
- <Page xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml' >
- <Border Padding = "4" BorderThickness="3" BorderBrush="Red" VerticalAlignment="Center" HorizontalAlignment="Center">
- <StackPanel Background="Gold" Orientation="Horizontal" >
- <StackPanel.Style>
- <Style TargetType="StackPanel">
- <Style.Triggers>
- <Trigger Property="IsMouseOver" Value="True">
- <Trigger.Setters>
- <Setter Property="TextBlock.Foreground" Value="Blue"/>
- </Trigger.Setters>
- </Trigger>
- </Style.Triggers>
- </Style>
- </StackPanel.Style>
- <Image Cursor="Hand" Margin="-25, -25, 0, 0" Source="file://Blue Lace 16.bmp"/>
- <TextBlock Padding = "3" VerticalAlignment="Center">
- Image (<Image Cursor="Hand" Width="9" Height="9" Source="file://Blue Lace 16.bmp"/>) and Text
- </TextBlock>
- </StackPanel>
- </Border>
- </Page>