5

データ OnTabSelectionChanged を検証する Silverlight 2 アプリケーションがあります。すぐに私は、UpdateSourceTrigger が LostFocus 以外のものを許可することを望み始めました。これは、コントロールからタブで移動せずにタブをクリックすると、検証前に LINQ オブジェクトが更新されないためです。

別のコントロールにフォーカスを設定してから OnTextChanged に戻すことで、TextBoxes の問題を回避しました。

Private Sub OnTextChanged(ByVal sender As Object, ByVal e As TextChangedEventArgs)
    txtSetFocus.Focus()
    sender.Focus()
End Sub

今、私は DataGrid 内で同じ種類のハックを達成しようとしています。私の DataGrid は、CellTemplate と CellEditingTemplate のために実行時に生成された DataTemplates を使用します。DataTemplate の TextBox に TextChanged="OnTextChanged" を書き込もうとしましたが、トリガーされません。

誰にもアイデアはありますか?

4

4 に答える 4

7

テキストボックスにもビヘイビアを適用して行うことができます

// xmlns:int is System.Windows.Interactivity from System.Windows.Interactivity.DLL)
// xmlns:behavior is your namespace for the class below
<TextBox Text="{Binding Description,Mode=TwoWay,UpdateSourceTrigger=Explicit}">
    <int:Interaction.Behaviors>
       <behavior:TextBoxUpdatesTextBindingOnPropertyChanged />
    </int:Interaction.Behaviors>
</TextBox>


public class TextBoxUpdatesTextBindingOnPropertyChanged : Behavior<TextBox>
{
    protected override void OnAttached()
    {
        base.OnAttached();

        AssociatedObject.TextChanged += new TextChangedEventHandler(TextBox_TextChanged);
    }

    protected override void OnDetaching()
    {
        base.OnDetaching();

        AssociatedObject.TextChanged -= TextBox_TextChanged;
    }

    void TextBox_TextChanged(object sender, TextChangedEventArgs e)
    {
        var bindingExpression = AssociatedObject.GetBindingExpression(TextBox.TextProperty);
        bindingExpression.UpdateSource();
    }
}
于 2010-07-14T23:22:11.067 に答える
0

このブログ投稿は、添付プロパティを使用してテキストボックスのソースを明示的に更新する方法を示しています: http ://www.thomasclaudiushuber.com/blog/2009/07/17/here-it-is-the-updatesourcetrigger-for-propertychanged-in -シルバーライト/

他のコントロールでも機能するように簡単に変更できます...

于 2010-05-25T20:24:00.060 に答える
0

MVVM と Silverlight 4 を使用して、この同じ問題に遭遇しました。問題は、テキスト ボックスがフォーカスを失うまでバインドがソースを更新しないことですが、別のコントロールにフォーカスを設定してもうまくいきません。

2 つの異なるブログ投稿を組み合わせて使用​​するソリューションを見つけました。私は、Patrick Cauldwell の DefaultButtonHub コンセプトのコードを使用し、SmallWorkarounds.net の「SmallWorkaround」を 1 つ使用しました。

http://www.cauldwell.net/patrick/blog/DefaultButtonSemanticsInSilverlightRevisited.aspx

www.smallworkarounds.net/2010/02/elementbinding-modes.html

私の変更により、DefaultButtonHub クラスの次のコードが作成されました。

public class DefaultButtonHub
{
    ButtonAutomationPeer peer = null;

    private void Attach(DependencyObject source)
    {
        if (source is Button)
        {
            peer = new ButtonAutomationPeer(source as Button);
        }
        else if (source is TextBox)
        {
            TextBox tb = source as TextBox;
            tb.KeyUp += OnKeyUp;
        }
        else if (source is PasswordBox)
        {
            PasswordBox pb = source as PasswordBox;
            pb.KeyUp += OnKeyUp;
        }
    }

    private void OnKeyUp(object sender, KeyEventArgs arg)
    {
        if (arg.Key == Key.Enter)
            if (peer != null)
            {
                if (sender is TextBox)
                {
                    TextBox t = (TextBox)sender;
                    BindingExpression expression = t.GetBindingExpression(TextBox.TextProperty);
                    expression.UpdateSource();
                }
                ((IInvokeProvider)peer).Invoke();
            }
    }

    public static DefaultButtonHub GetDefaultHub(DependencyObject obj)
    {
        return (DefaultButtonHub)obj.GetValue(DefaultHubProperty);
    }

    public static void SetDefaultHub(DependencyObject obj, DefaultButtonHub value)
    {
        obj.SetValue(DefaultHubProperty, value);
    }

    // Using a DependencyProperty as the backing store for DefaultHub.  This enables animation, styling, binding, etc...
    public static readonly DependencyProperty DefaultHubProperty =
        DependencyProperty.RegisterAttached("DefaultHub", typeof(DefaultButtonHub), typeof(DefaultButtonHub), new PropertyMetadata(OnHubAttach));

    private static void OnHubAttach(DependencyObject source, DependencyPropertyChangedEventArgs prop)
    {
        DefaultButtonHub hub = prop.NewValue as DefaultButtonHub;
        hub.Attach(source);
    }

}

これは、Silverlight のある種のドキュメントに含まれている必要があります :)

于 2010-06-19T23:00:19.303 に答える
-2

私はそれが古いニュースであることを知っています...しかし、私はこれを行うことでこれを回避しました:

Text="{Binding Path=newQuantity, UpdateSourceTrigger=PropertyChanged}"

于 2009-10-31T17:11:28.117 に答える