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.
使用 WPF,我能够通过 BindingExpression 获取 {Binding} 绑定属性的路径。在 UWP 中有没有办法确定使用 {x:Bind} 语法绑定哪个属性?我需要发现哪些属性绑定到哪些控件。我知道 {x:Bind} 没有 BindingExpression。是否有另一种方法可以在控件与其绑定属性之间进行映射?
{x:Bind} 扩展是在设计时执行的指令,用于生成代码以注册事件处理程序并显式设置相关属性,绕过在运行时使用反射的 {Binding} 注册,因此在运行时无法检测或获取处理程序从 {x:Bind} 到绑定语句,因为没有。