silverlight 在非 UI 类挂钩中接收 INotifyPropertyChanged

发布于 2024-09-19 11:21:55 字数 165 浏览 5 评论 0原文

我有一个引发 INotifyPropertyChanged 事件的类。 我对与 UI 控件的数据绑定感到非常满意,但我希望将这些事件触发到非 UI 类中,但不确定要注册或挂钩什么。

我知道这应该很简单,而且可能是这样,我只是在寻找这条道路上的快速指示。

非常感谢

保罗

I've a class that raises INotifyPropertyChanged events.
I'm quite happy with databinding to UI controls, but I'd like to get these events fired into a non-UI class, but am unsure of what to register or hook into.

I know it should be simple, and it probably is, I'm just after a quick pointer down this road.

Many Thanks

Paul

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

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

发布评论

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

评论(1

献世佛 2024-09-26 11:21:56

我可能误解了你,但是你不能只使用 INotifyProperyChanged 中的公共事件来做你想做的事情吗?

MyClassInstance.PropertyChanged += (sender, e) =>
{
     if (e.PropertyName == "MyProperty")
     {
          // do something
     }
};

I may be misunderstanding you, but can't you just use the public event in INotifyProperyChanged to do what you want to do?

MyClassInstance.PropertyChanged += (sender, e) =>
{
     if (e.PropertyName == "MyProperty")
     {
          // do something
     }
};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文