19 lines
838 B
XML
19 lines
838 B
XML
<Window x:Class="WPF路由事件_8_鼠标拖拽.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="WPF路由事件_8_鼠标拖拽" Height="450" Width="800">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Label Grid.Row="0" Background="Aqua " Name="LabelDrop1" MouseDown="LabelDrop1_OnMouseDown">拖拽1</Label>
|
|
|
|
<Label Grid.Row="1" DragEnter="LabelDrop1_OnDrop" AllowDrop="True">拖拽2</Label>
|
|
</Grid>
|
|
</Window> |