即使设置了OneWay模式,也无法读取只读属性

时间:2016-11-10 15:51:31

标签: c# wpf data-binding

视图模型

namespace My.ViewModels
{
    public class ItemViewModel : ObservableObject
    {
        private ItemModel _model;

        public ItemViewModel(ItemModel model)
        {
            _model = model;
        }

        public string Name { get { return _model.Name; } }
    }
}

XAML

<UserControl x:Class="My.Controls.ItemControl"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
             xmlns:viewModels="clr-namespace:My.ViewModels"
             mc:Ignorable="d"
             d:DesignHeight="421" d:DesignWidth="786"
             d:DataContext="{d:DesignInstance viewModels:ItemViewModel}">
    <Grid Background="White">
        <TextBlock><Run Text="Name:" /> <Run Text="{Binding Name, FallbackValue=Name, Mode=OneWay}" /></TextBlock>
    </Grid>
</UserControl>

错误:

A TwoWay or OneWayToSource binding cannot work on the read-only property 'Name'

我正在尝试从ViewModel向DataBinding执行只读属性。 我已经将绑定模式设置为OneWay ..但它仍然会抛出上面的错误。 我没有线索了!任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

要使用OneWay绑定,您的属性应该已获取并设置。所以在这种情况下,要修复问题,您只需将set添加到您的属性中,如下所示:

public string Name { private set; get { return _model.Name; }