Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 XAML 与一个从 UserControl 类继承的 cs 类配对。我想在此类中访问 XAML 中被绑定的对象(绑定源),并在触发事件时根据对象的某些属性在 UI 中进行一些更改。有没有办法管理这个?
提前致谢。
我想你正在寻找DataContext. 从你UserControl的 cs 课:
DataContext
UserControl
var myObject = (MyType)this.DataContext; myObject.PropertyChanged += myHandler;
请注意,DataContext当您在构造函数中时,不会设置。您应该能够在Loaded活动中或之后获得它。
Loaded