我想在MVVM中引发Label的MouseUp事件。但我给了我错误"会员无法访问或无法识别" 。请告诉我错误的地方
<Label Content="UserName" MouseBehaviours:MouseBehaviour.MouseUpCommand="{Binding MouseUpCommand}" Height="28" HorizontalAlignment="Left" Margin="40,5,0,0" Name="label1" VerticalAlignment="Top" >
<i:Interaction.Triggers>
<i:EventTrigger EventName="MouseUp">
<i:InvokeCommandAction Command="{Binding MouseUpCommand}"/>//here i am getting error
</i:EventTrigger>
</i:Interaction.Triggers>
</Label>