我想把我的StringFormat取出给静态资源。
我试图这样做,但它不起作用
.. xmlns:system="clr-namespace:System;assembly=mscorlib">
ResourceDictionary>
<system:String x:Key="MyFormat">'http://www.gravatar.com/avatar/{0}?d=mm&s=150'</system:String>
</ResourceDictionary>
这里我初始化了我的StringFormat
<Image.Source>
<UriImageSource Uri="{Binding EmailHash,StringFormat={StaticResource MyFormat}}}" />
</Image.Source>
答案 0 :(得分:0)
您的StaticResouce
<system:String x:Key="MyFormat">http://www.gravatar.com/avatar/{0}?d=mm&s=150</system:String>