WPF-Base/WPF路由事件-1-引发路由事件/MainWindow.xaml

19 lines
893 B
XML

<Window x:Class="WPF路由事件_1_引发路由事件.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Title="MainWindow" Height="800" Width="400">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Image Source="public/images/003540AH4M72.jpg" Width="322" Stretch="Uniform"
MouseUp="GridImage_OnMouseUp" />
<Image Grid.Row="1" Margin="0 8 0 0 " Source="public/images/003540AH4M72.jpg" Width="322" Stretch="Uniform"
Name="GridImage2" />
</Grid>
</Window>