我正在尝试用表达式混合来探索行为。我已经看到在各种教程中在线使用鼠标拖动但是我无法让它工作。这是示例代码 - 这是整个事情......
<Window
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" xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions" mc:Ignorable="d"
x:Class="VsmTest.MainWindow"
x:Name="Window"
Title="MainWindow"
Width="640" Height="480">
<Grid x:Name="LayoutRoot">
<Button Content="Button" Height="25" Width="100">
<i:Interaction.Behaviors>
<ei:MouseDragElementBehavior/>
</i:Interaction.Behaviors>
</Button>
</Grid>
据我所知,我现在应该可以拖动那个按钮,但是它不起作用 - 嗯......有什么我想念的吗?我见过的大多数教程都使用了混合3,所以它看起来有点不同,所以也许我错过了那里的东西。
谢谢!
答案 0 :(得分:4)
Button会拦截行为逻辑,因为它会处理点击次数,如果你将Button替换为Rectangle
之类的其它东西,它应该有效。