Windows Phone TwoWay绑定无法正常工作

时间:2014-07-05 12:00:47

标签: c# windows-phone-7 windows-phone-8 binding windows-phone

实际上双向绑定有效,但存在问题。

我在appbar上有一个按钮。我还有一个带有TwoWay绑定的文本框。现在,如果我在文本框中输入,并且我从文本框中删除焦点(通过按后退键关闭键盘),则文本框文本绑定到的属性会更新。

但是,如果我在不关闭键盘的情况下按下AppBar按钮,则该属性不会更新。

这个问题有一个简单的解决方案吗?

非常感谢所有帮助。 谢谢!

编辑: 我试过这个。专注于AppBar按钮点击,但仍然没有运气

编辑2:

这是我的代码 -

<StackPanel>
    <TextBlock Text="Title" FontSize="{StaticResource PhoneFontSizeMediumLarge}" Margin="15,0,0,0"/>
    <TextBox Name="TitleTB" Text="{Binding Title, Mode=TwoWay}" />
    <TextBlock Text="Description" FontSize="{StaticResource PhoneFontSizeMediumLarge}" Margin="15,0,0,0"/>
    <TextBox Name="DescriptionTB" Text="{Binding Description, Mode=TwoWay}" AcceptsReturn="True" MaxHeight="300" VerticalScrollBarVisibility="Auto" />
</StackPanel>

.cs代码 -

public CreateTaskPage()
    {
        InitializeComponent();

        M1 = new MyClass { Description = "Description", Title = "title1" };
        this.DataContext = M1;
    }
private void ApplicationBarIconButton_Click(object sender, EventArgs e)
    {
        //save - I change the text in the textbox from title1 to title123 suppose
        // But it still shows title1 if I click the appbar button without closing the keyboard
        this.Focus();

        MessageBox.Show(M1.Title);
    }

编辑3: MyClass代码 -

public class MyClass : INotifyPropertyChanged
{
    private string title;

    private string description;

    public string Title
    {
        get { return title; }
        set
        {
            title = value;
            OnPropertyChanged("Title");
        }
    }

    public string Description
    {
        get { return description; }
        set
        {
            description = value;
            OnPropertyChanged("Description");
        }
    }

    public event PropertyChangedEventHandler PropertyChanged;

    protected void OnPropertyChanged(string name)
    {
        PropertyChangedEventHandler handler = PropertyChanged;
        if (handler != null)
        {
            handler(this, new PropertyChangedEventArgs(name));
        }
    }
}

3 个答案:

答案 0 :(得分:0)

为了确保,你是否正确地声明了MyClass的属性,如下所示?

class MyClass {
    public String Description { get; set; }
    public String Title { get; set; }
}

答案 1 :(得分:0)

试试这个:

private void ApplicationBarIconButton_Click(object sender, EventArgs e)
{
        BindingExpression expression = TitleTB.GetBindingExpression(TextBox.TextProperty);
        MessageBox.Show("Before UpdateSource, Test = " + M1.Title);
        expression.UpdateSource();
        MessageBox.Show("After UpdateSource, Test = " + M1.Title);
}

有关绑定的更多参考,您可以访问Data binding for Windows Phone

答案 2 :(得分:-1)

为什么不将焦点从文本框转移到ApplicationBarIconButton的click事件中的其他控件。