内置 WPF IValueConverter
好吧,(在写了几次之后)发现 System.Windows.Controls 命名空间中已经有一个 BooleanToVisibilityConverter ,这真是一个惊喜。
可能还有更多这样隐藏的节省时间的方法。
有人有一些吗?
Ok, it was a nice surprise (after writing it several times) to find that there already is a BooleanToVisibilityConverter in System.Windows.Controls namespace.
Probably there are more such hidden time-savers.
Anyone got some?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用对象浏览器进行了快速搜索,这就是我所拥有的。
源自
IValueConverter
:派生自
IMultiValueConverter
:请注意,Xceed(无连接)可通过其 DataGrid 免费获得。 除此之外,还有一些聪明的东西,例如调试转换器。 我还使用了 最后一个 IValueConverter 并且我确信还有一些进一步的 lambda功能的优点也有待发现。
I did a quick trawl using the Object Browser and this is what I have.
Derived from
IValueConverter
:Derived from
IMultiValueConverter
:Note the Xceed ones (no connection) are available free with their DataGrid. As well as those there's some clever stuff around like the debugging converter. I've also used the last IValueConverter and I'm sure there's some further lambda function goodness to be found, too.
在 3.5 SP1 之前,需要 IValueConverter 来进行字符串格式化。 现在,您可以使用 StringFormat< Binding 上的 /a> 属性可以执行此操作。
来自 MSDN 页面:
Before 3.5 SP1, an IValueConverter was required for string formatting. Now, you can use the StringFormat property on Binding to do this.
From the MSDN page: