WPF 绑定到 HierarchicalDataTemplate 内带有参数的方法
有没有办法将值绑定到从方法获取的文本块。例如,我将 Person 对象传递到 HierarchicalDataTemplate 中,从那里我可以访问其 Weight 属性。现在假设我想获取火星的重量,我会调用 InMars 方法,该方法采用 int EarthWeight 参数。现在earthweight要从Person变成Person,怎么每次都设置这个参数呢?
Is there any way to bind a value to a textblock that is obtained from a method. For example, I pass my Person object into the HierarchicalDataTemplate, from there I can access its Weight property. Now lets say I want to get the weight in mars, I would call the InMars method that takes a parameter of int EarthWeight . Now earthweight is going to change from Person to Person, how can this parameter be set every time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的方法是使用转换器。
然后你只需要设置绑定即可。
The best way to do this is with a converter.
Then you just need to set up the binding.