回答:
添付ビヘイビアーを作成することで、純粋なXAMLアプローチを作成できます。
このようなもの:
public static class InputBindingsManager
{
public static readonly DependencyProperty UpdatePropertySourceWhenEnterPressedProperty = DependencyProperty.RegisterAttached(
"UpdatePropertySourceWhenEnterPressed", typeof(DependencyProperty), typeof(InputBindingsManager), new PropertyMetadata(null, OnUpdatePropertySourceWhenEnterPressedPropertyChanged));
static InputBindingsManager()
{
}
public static void SetUpdatePropertySourceWhenEnterPressed(DependencyObject dp, DependencyProperty value)
{
dp.SetValue(UpdatePropertySourceWhenEnterPressedProperty, value);
}
public static DependencyProperty GetUpdatePropertySourceWhenEnterPressed(DependencyObject dp)
{
return (DependencyProperty)dp.GetValue(UpdatePropertySourceWhenEnterPressedProperty);
}
private static void OnUpdatePropertySourceWhenEnterPressedPropertyChanged(DependencyObject dp, DependencyPropertyChangedEventArgs e)
{
UIElement element = dp as UIElement;
if (element == null)
{
return;
}
if (e.OldValue != null)
{
element.PreviewKeyDown -= HandlePreviewKeyDown;
}
if (e.NewValue != null)
{
element.PreviewKeyDown += new KeyEventHandler(HandlePreviewKeyDown);
}
}
static void HandlePreviewKeyDown(object sender, KeyEventArgs e)
{
if (e.Key == Key.Enter)
{
DoUpdateSource(e.Source);
}
}
static void DoUpdateSource(object source)
{
DependencyProperty property =
GetUpdatePropertySourceWhenEnterPressed(source as DependencyObject);
if (property == null)
{
return;
}
UIElement elt = source as UIElement;
if (elt == null)
{
return;
}
BindingExpression binding = BindingOperations.GetBindingExpression(elt, property);
if (binding != null)
{
binding.UpdateSource();
}
}
}
次に、XAMLでInputBindingsManager.UpdatePropertySourceWhenEnterPressedProperty
、Enterキーが押されたときに更新するプロパティにプロパティを設定します。このような
<TextBox Name="itemNameTextBox"
Text="{Binding Path=ItemName, UpdateSourceTrigger=PropertyChanged}"
b:InputBindingsManager.UpdatePropertySourceWhenEnterPressed="TextBox.Text"/>
(XAMLファイルのルート要素に "b"のxmlns clr-namespace参照を含めて、InputBindingsManagerを配置した名前空間を指すようにする必要があります)。
UpdatePropertySourceWhenEnterPressed
有効な値から別の有効な値に変更すると、PreviewKeyDown
イベントの購読を取り消して、不要に再購読します。代わりに、あなたが必要とする必要があるすべては、かどうかを確認することであるe.NewValue
ですnull
か。そうでない場合はnull
、購読してください。それ以外の場合null
は、購読を解除します。
これが私がこの問題を解決した方法です。コードビハインドに入る特別なイベントハンドラーを作成しました。
private void TextBox_KeyEnterUpdate(object sender, KeyEventArgs e)
{
if (e.Key == Key.Enter)
{
TextBox tBox = (TextBox)sender;
DependencyProperty prop = TextBox.TextProperty;
BindingExpression binding = BindingOperations.GetBindingExpression(tBox, prop);
if (binding != null) { binding.UpdateSource(); }
}
}
次に、これをXAMLのKeyUpイベントハンドラーとして追加しました。
<TextBox Text="{Binding TextValue1}" KeyUp="TextBox_KeyEnterUpdate" />
<TextBox Text="{Binding TextValue2}" KeyUp="TextBox_KeyEnterUpdate" />
イベントハンドラーはそのsender
参照を使用して、独自のバインディングを更新します。イベントハンドラーは自己完結型であるため、複雑なDataTemplateで機能するはずです。この1つのイベントハンドラーは、この機能を必要とするすべてのテキストボックスに追加できます。
KeyBinding
XAMLでこのメソッドを起動するために使用しました。これは、UIにEnterキーをキャッチする「デフォルト」コントロールがあるためです。このTextBox内でキャッチして、UIツリーを「デフォルト」コントロールに伝播しないようにする必要があります。
私はあなたが説明していることを行うための「純粋なXAML」方法があるとは信じていません。次のようにUpdateSourceTriggerプロパティを設定することで、TextBoxのテキストが変更されるたびに(TextBoxがフォーカスを失ったときではなく)更新されるようにバインディングを設定できます。
<TextBox Name="itemNameTextBox"
Text="{Binding Path=ItemName, UpdateSourceTrigger=PropertyChanged}" />
UpdateSourceTriggerを "Explicit"に設定し、TextBoxのPreviewKeyDownイベント(Enterキーを探す)を処理した場合、希望どおりの結果を得ることができますが、コードビハインドが必要になります。おそらく、ある種の添付プロパティ(私のEnterKeyTraversalプロパティに似ています)が役に立ちます。
TextBoxから継承する独自のコントロールを簡単に作成し、プロジェクト全体で再利用できます。
これに似たものがうまくいくはずです:
public class SubmitTextBox : TextBox
{
public SubmitTextBox()
: base()
{
PreviewKeyDown += new KeyEventHandler(SubmitTextBox_PreviewKeyDown);
}
void SubmitTextBox_PreviewKeyDown(object sender, KeyEventArgs e)
{
if (e.Key == Key.Enter)
{
BindingExpression be = GetBindingExpression(TextBox.TextProperty);
if (be != null)
{
be.UpdateSource();
}
}
}
}
この手順を回避する方法はあるかもしれませんが、それ以外の場合は(Explicitを使用して)このようにバインドする必要があります。
<custom:SubmitTextBox
Text="{Binding Path=BoundProperty, UpdateSourceTrigger=Explicit}" />
Benとausadminの両方のソリューションを組み合わせると、非常にMVVMフレンドリーなソリューションになります。
<TextBox Text="{Binding Txt1, Mode=TwoWay, UpdateSourceTrigger=Explicit}">
<TextBox.InputBindings>
<KeyBinding Gesture="Enter"
Command="{Binding UpdateTextBoxBindingOnEnterCommand}"
CommandParameter="{Binding RelativeSource={RelativeSource FindAncestor,AncestorType={x:Type TextBox}}}" />
</TextBox.InputBindings>
</TextBox>
...つまり、TextBox
それ自体をパラメータとしてに渡しますCommand
。
これにより、次のCommand
ようDelegateCommand
になります(VMで-スタイルの実装を使用している場合)。
public bool CanExecuteUpdateTextBoxBindingOnEnterCommand(object parameter)
{
return true;
}
public void ExecuteUpdateTextBoxBindingOnEnterCommand(object parameter)
{
TextBox tBox = parameter as TextBox;
if (tBox != null)
{
DependencyProperty prop = TextBox.TextProperty;
BindingExpression binding = BindingOperations.GetBindingExpression(tBox, prop);
if (binding != null)
binding.UpdateSource();
}
}
このCommand
実装はTextBox
、分離コード内のすべてのコードのすべてに使用できますが、これを独自のクラスに配置しSystem.Windows.Controls
て、VMに依存しないようにすることもできます。それはあなたのコードガイドラインがどれほど厳しいかに依存します。
これは私には非常に簡単で、AttachedBehaviourを追加する方が簡単なアプローチです(これも有効なソリューションです)。デフォルトのUpdateSourceTrigger(TextBoxのLostFocus)を使用し、コマンドにバインドされたEnterBindingをEnterキーに追加します。
xamlは次のとおりです
<TextBox Grid.Row="0" Text="{Binding Txt1}" Height="30" Width="150">
<TextBox.InputBindings>
<KeyBinding Gesture="Enter"
Command="{Binding UpdateText1Command}"
CommandParameter="{Binding RelativeSource={RelativeSource FindAncestor,AncestorType={x:Type TextBox}},Path=Text}" />
</TextBox.InputBindings>
</TextBox>
次に、コマンドメソッドは
Private Function CanExecuteUpdateText1(ByVal param As Object) As Boolean
Return True
End Function
Private Sub ExecuteUpdateText1(ByVal param As Object)
If TypeOf param Is String Then
Txt1 = CType(param, String)
End If
End Sub
そして、TextBoxはプロパティにバインドされています
Public Property Txt1 As String
Get
Return _txt1
End Get
Set(value As String)
_txt1 = value
OnPropertyChanged("Txt1")
End Set
End Property
これまでのところ、これはうまく機能しているようで、TextBoxのEnter Keyイベントをキャッチします。
これは元の質問への回答ではなく、@ Samuel Jackによって受け入れられた回答の拡張です。私は自分のアプリケーションで次のことを行い、サミュエルのソリューションの優雅さに畏敬の念を抱きました。だけでなく、あらゆるコントロールで使用できるため、非常にクリーンで再利用可能TextBox
です。これはコミュニティと共有すべきだと思いました。
TextBoxes
Enterでバインドソースをすべて更新する必要がある1,000のウィンドウがある場合Window
Resources
、各TextBoxにアタッチするのではなく、以下のXAMLをに含めることで、すべてのウィンドウにこの動作をアタッチできます。最初に、もちろん、サミュエルの投稿に従って、添付の動作を実装する必要があります。
<Window.Resources>
<Style TargetType="{x:Type TextBox}" BasedOn="{StaticResource {x:Type TextBox}}">
<Style.Setters>
<Setter Property="b:InputBindingsManager.UpdatePropertySourceWhenEnterPressed" Value="TextBox.Text"/>
</Style.Setters>
</Style>
</Window.Resources>
必要に応じGrid
て、ターゲットのTextBoxを含むウィンドウの子要素の1つ(つまり)のリソースにスタイルを配置することにより、いつでもスコープを制限できます。
TextBoxでMultiBindingを使用している場合は、BindingOperations.GetMultiBindingExpression
ではなくmethod を使用する必要がありますBindingOperations.GetBindingExpression
。
// Get the correct binding expression based on type of binding
//(simple binding or multi binding.
BindingExpressionBase binding =
BindingOperations.GetBindingExpression(element, prop);
if (binding == null)
{
binding = BindingOperations.GetMultiBindingExpression(element, prop);
}
if (binding != null)
{
object value = element.GetValue(prop);
if (string.IsNullOrEmpty(value.ToString()) == true)
{
binding.UpdateTarget();
}
else
{
binding.UpdateSource();
}
}
アタッチされたビヘイビアーを使用して、ここでかなりエレガントに答えました。
個人的には、マークアップ拡張機能を使用する方がよりクリーンなアプローチだと思います。
public class UpdatePropertySourceWhenEnterPressedExtension : MarkupExtension
{
public override object ProvideValue(IServiceProvider serviceProvider)
{
return new DelegateCommand<TextBox>(textbox => textbox.GetBindingExpression(TextBox.TextProperty).UpdateSource());
}
}
<TextBox x:Name="TextBox"
Text="{Binding Text}">
<TextBox.InputBindings>
<KeyBinding Key="Enter"
Command="{markupExtensions:UpdatePropertySourceWhenEnterPressed}"
CommandParameter="{Binding ElementName=TextBox}"/>
</TextBox.InputBindings>
</TextBox>