DragonNest/Third/XTToolkitPro/Utils/Markups/Image.xaml
2024-12-19 09:48:26 +08:00

23 lines
No EOL
907 B
XML

<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>