而不是在资源中声明转换器,我可以做类似的事情
IsEnabled={Binding Path=SomeProp, Converter={x:Static namespace:Converter.Instance}}"
其中 Instance 仅被实例化一次(懒惰的 sinlgeton)
但是我担心在处理视图时保留对静态变量的引用可能会妨碍垃圾收集(我正在使用 PRISM)。你怎么看?
而不是在资源中声明转换器,我可以做类似的事情
IsEnabled={Binding Path=SomeProp, Converter={x:Static namespace:Converter.Instance}}"
其中 Instance 仅被实例化一次(懒惰的 sinlgeton)
但是我担心在处理视图时保留对静态变量的引用可能会妨碍垃圾收集(我正在使用 PRISM)。你怎么看?