WPF 使用的默认转换器列表?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/12977247/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
List of default converters used by WPF?
提问by Damascus
Where can one find a list of default converters for WPF?
在哪里可以找到 WPF 的默认转换器列表?
After looking into Google, I couldn't find any detailed list of what is actually included in WPF, particularly the MSDN docs. Only found:
在查看 Google 之后,我找不到 WPF 中实际包含的内容的任何详细列表,尤其是 MSDN 文档。只发现:
- Does WPF have a set of default binding converters available?
- some articles on
TypeConverter.
- WPF 是否有一组可用的默认绑定转换器?
- 一些文章
TypeConverter。
回答by Sisyphe
In System.Windows.Control (PresentationFramework.dll)
在 System.Windows.Control (PresentationFramework.dll) 中
- AlternationConverter
- BooleanToVisibilityConverter
- BorderGapMaskConverter
- DataGridLengthConverter
- MenuScrollingVisibilityConverter
- 交替转换器
- BooleanToVisibilityConverter
- BorderGapMaskConverter
- 数据网格长度转换器
- MenuScrollingVisibilityConverter
In System.Windows.Documents
在 System.Windows.Documents 中
- ZoomPercentageConverter
- JournalEntryListConverter
- 缩放百分比转换器
- JournalEntryListConverter
In Microsoft.Windows.Themes
在 Microsoft.Windows.Themes 中
- ProgressBarBrushConverter
- ProgressBarHighlightConverter
- ProgressBarBrushConverter
- ProgressBarHighlightConverter
In System.Windows.Navigation
在 System.Windows.Navigation 中
- JournalEntryUnifiedViewConverter
- JournalEntryUnifiedViewConverter

