wpf:Mousedoubleclick for textbox

时间:2009-08-21 15:18:07

标签: wpf mouseevent

如何处理xaml中文本框文本中的mousedoubleclick。

这就是我在输入键盘输入xaml

的方式
<TextBox Text="{Binding Path=FullName, Mode=OneWay}" 
         IsReadOnly="True"
         x:Name="txtFullName"/>
<Button Command="{Binding OpenStaffDialogCommand}" 
        CommandParameter="{Binding Text, ElementName=txtFullName}" 
        Width="0" 
        IsDefault="{Binding IsFocused, ElementName=txtFullName}" />

由于

1 个答案:

答案 0 :(得分:1)

您想要处理MouseDoubleClick事件。