WPF-Base/WPF路由事件-7-鼠标状态/MainWindow.xaml

11 lines
566 B
XML

<Window x:Class="WPF路由事件_7_鼠标状态.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="450" Width="800">
<Grid>
<Image Width="800" Height="450" Source="public/test-image.jpg" MouseMove="UIElement_OnMouseMove" />
</Grid>
</Window>