xaml 中的 WPF 转换器
我知道有几种方法可以在 xaml 中使用值转换器,例如使用 StaticResource 从资源获取转换器或使用 Static 从静态实例获取转换器。我的问题是,无论出于何种原因,我在后面的代码中创建了一个转换器实例,并且可以通过非静态属性进行访问,如何在 xaml 中使用此转换器实例进行绑定?
谢谢,
问
I know there are a few ways to use value converter in xaml, like using StaticResource to get converter from resources or Static to get from a static instance. My question is, for whatever reason, I have a converter instance created in the code behind, and can be accessed through a non static property, How can I use this instance of converter in xaml for binding?
Thanks,
Q
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您使用转换器作为绑定的一部分,您也可以在后面的代码中创建绑定,并将其连接到您想要在代码中使用的控件。
Assuming you are using the converter as part of a binding, you could create the binding in your code behind also, and hook it up to the control you want to in code.