如何报告实体对象的自定义(添加)计算属性已更改?

发布于 2024-09-17 05:49:58 字数 524 浏览 4 评论 0原文

首先,我为我的低水平英语写作表示歉意。

我在 WPF MVVM 项目中使用实体框架和数据绑定。 我想知道将数据绑定到使用实体框架生成的 EntityObject 的添加计算属性的最佳方法是什么。

例如:

partial class Person
{
    partial string Name...

    partial string Surname...

    public string FullName
    {
        get { return Name + Surname; }
    }
}

然后在 XAML 中类似 ...Text="{Binding FullName, Mode=Twoway}"

此时我的 GUI 不知道属性 FullName 何时更改...我如何通知它? 我尝试过使用 ReportPropertyChanged 但它返回一个错误...

另外,我想知道当一个绑定依赖于更多属性时实现绑定的最佳方法是什么...计算属性或值转换器或不同的东西?

First, I apologize for my low level English writing.

I use Entity Framework and data-binding in WPF MVVM project.
I would like to know what is the best way to do data binding to added calculated property of EntityObject which is generated with Entity Framework.

For example:

partial class Person
{
    partial string Name...

    partial string Surname...

    public string FullName
    {
        get { return Name + Surname; }
    }
}

And then in XAML something like ...Text="{Binding FullName, Mode=Twoway}"

At this point my GUI doesn't know when property FullName is changed... how can I notify it?
I've tried with ReportPropertyChanged but it return's an error...

Also, I wonder what is the best way to implement binding when one binding depends on more properties...calculated properties or value converters or something different?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烏雲後面有陽光 2024-09-24 05:49:58

您可以在构造函数中订阅 PropertyChanged 事件,如果属性名称与两个源属性之一匹配,则引发计算出的属性的事件。

public Person()
{
    this.PropertyChanged += (o, e) =>
        {
            if (e.PropertyName == "Name" || e.PropertyName == "Surname") OnPropertyChanged("FullName");
        };
}

You could subscribe to the PropertyChanged event in the constructor and if the property name matches either of the two source properties, raise the event for the calculated one.

public Person()
{
    this.PropertyChanged += (o, e) =>
        {
            if (e.PropertyName == "Name" || e.PropertyName == "Surname") OnPropertyChanged("FullName");
        };
}
不打扰别人 2024-09-24 05:49:58

我不确定你是否正在寻找这种东西:

public string FullName
{
    get { return Name + Surname; }
    set 
    {
        // You should do some validation while and before splitting the value
        this.Name = value.Split(new []{' '})[0];
        this.Surname = value.Split(new []{' '})[1];
    }
}

I am not sure if you are looking for this kind of thing:

public string FullName
{
    get { return Name + Surname; }
    set 
    {
        // You should do some validation while and before splitting the value
        this.Name = value.Split(new []{' '})[0];
        this.Surname = value.Split(new []{' '})[1];
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文