0
Comment gérer mousedoubleclick dans le texte de la zone de texte dans xaml.wpf: Mousedoubleclick pour la zone de texte
Voilà comment je fais pour entrer clavier entrer dans 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}" />
Merci
Comme je l'ai fait pour le clavier entrer. Quelque chose de similaire mais sans code derrière. –