我绑定了我的应用程序中的大多数Label
对象,以便可以从 Web 服务中替换它们。
我将替换内容存储在字典中。替换因应用程序加载的客户端而异。
我遇到的问题是大多数时候我不替换标签,绑定失败抛出一个非常慢的异常。
这是一个示例:( 请注意,此代码正常运行,如果找不到匹配项,则速度很慢。)
<Label Content="_Gender"
Helpers:CaptionHelper.PropertyName="Content"
Helpers:CaptionHelper.PropertyValue="{Binding Labels[Gender],
FallbackValue=_Gender}"
Target="{Binding ElementName=cbGender}" />
当绑定尝试查找 Lables[Gender] 时,我在输出窗口中得到了这个:
System.Windows.Data Warning: 17 : Cannot get 'Item[]' value (type 'String') from 'Labels' (type 'Dictionary`2'). BindingExpression:Path=Labels[Gender]; DataItem='MyViewMV'
(HashCode=63776763); target element is 'Label' (Name=''); target property is 'PropertyValue'(type 'String') TargetInvocationException:'System.Reflection.TargetInvocationException:
Exception has been thrown by the target of an invocation. ---> System.Collections.Generic.KeyNotFoundException:
The given key was not present in the dictionary.
at System.Collections.Generic.Dictionary`2.get_Item(TKey key)
--- End of inner exception stack trace ---
at System.RuntimeMethodHandle._InvokeMethodFast(Params Truncated)
at System.Reflection.RuntimeMethodInfo.Invoke(Params Truncated)
at System.Reflection.RuntimeMethodInfo.Invoke(Params Truncated)
at MS.Internal.Data.PropertyPathWorker.GetValue(Params Truncated)
at MS.Internal.Data.PropertyPathWorker.RawValue(Params Truncated)'
因为我有很多这样的东西,所以要花整整一秒钟的时间来浏览它们。
当字典查找失败时,有没有办法使绑定不抛出异常?或者以某种方式更快地失败?