WPF-Base/WPF路由事件-2-事件路由/MainWindow.xaml

16 lines
831 B
XML

<Window x:Class="WPF路由事件_2_事件路由.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"
Icon="public/logo/1.ico"
Title="WPF路由事件_2_事件路由" Height="450" Width="800">
<Label BorderBrush="Black" BorderThickness="10">
<StackPanel>
<TextBlock Margin="3">图片和文本的内容</TextBlock>
<Image Source="public/images/003540AH4M72.jpg" Width="322" MouseUp="UIElement_OnMouseUp" />
<TextBlock Margin="3">内容信息</TextBlock>
</StackPanel>
</Label>
</Window>