本文介绍了使用的IValueConverter与DynamicResource?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法使用 DynamicResource 扩展当定义一个转换器?东西的行

 < RowDefinition HEIGHT ={绑定源= {DynamicResource someHeight},转换器= {StaticResource的gridLengthConverter}}/>

不幸的是给我下面的错误时抛出:

解决方案

I know i am really late to this but what definitely works is using a BindingProxy for the DynamicResource like this

<my:BindingProxy x:Key="someHeightProxy" Data="{DynamicResource someHeight}" />

Then applying the converter to the proxy

<RowDefinition Height="{Binding Source={StaticResource someHeightProxy}, Path=Data, Converter={StaticResource gridLengthConverter}}" />

这篇关于使用的IValueConverter与DynamicResource?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-18 02:29