TextBox Text属性的绑定模式应默认为TwoWay

时间:2016-06-24 00:46:50

标签: c# xaml binding uwp mvvm-light

我正在创建一个简单的MvvmLight / UWP项目。

我的模型是文章类:

public class Article : ObservableObject
{
    public Guid Id { get; set; }

    string référence;
    public string Référence
    {
        get { return référence; }
        set
        {
            if (référence == value)
                return;
            référence = value;
            RaisePropertyChanged();
        }
    }

    string désignation;
    public string Désignation
    {
        get { return désignation; }
        set
        {
            if (désignation == value)
                return;
            désignation = value;
            RaisePropertyChanged();
        }
    }
}

这是我的观点:

<Page
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:UniversalTest1.UWP.Articles"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    x:Class="UniversalTest1.UWP.Articles.Article_Detail"
    mc:Ignorable="d"
    xmlns:vm="clr-namespace:UniversalTest1.Data.ViewModels.Articles;assembly=UniversalTest1.Data"
    d:DataContext="{d:DesignInstance Type=vm:ArticleViewModel, IsDesignTimeCreatable=True}">

    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
        <TextBlock Text="Référence :"   HorizontalAlignment="Left" Margin="24,15,0,0" VerticalAlignment="Top"/>
        <TextBlock Text="Désignation :" HorizontalAlignment="Left" Margin="10,52,0,0" VerticalAlignment="Top"/>

        <TextBox Text="{Binding Article.Référence, Mode=TwoWay}" HorizontalAlignment="Left" Margin="100,8,0,0" VerticalAlignment="Top" Width="300"/>
        <TextBox Text="{Binding Article.Désignation, Mode=TwoWay}" HorizontalAlignment="Left" Margin="100,45,0,0" VerticalAlignment="Top" Width="500"/>

        <Button Content="Sauver" Command="{Binding SauverCommand}" HorizontalAlignment="Left" Margin="102,84,0,0" VerticalAlignment="Top"/>
    </Grid>
</Page>

请注意2个文本框的绑定中的 Mode = TwoWay 参数。如果我不使用它,我会得到OneWay绑定。

不应该将TextBox.Text属性的绑定默认为TwoWay吗?

非常感谢提前,
于连

2 个答案:

答案 0 :(得分:1)

根据this文章,{Binding}的默认绑定模式是OneWay,而{x:Bind}的默认模式是OneTime。

因此,如果您在绑定上需要,则需要明确将模式设置为 TwoWay

答案 1 :(得分:0)

有趣。我也是这么想的。但最安全的是明确设置所需的绑定模式,因为它从属性更改为属性。只是一个推荐。