WPF的BitmapCache尚未完全清除

时间:2012-08-10 13:20:59

标签: .net wpf path bitmap rendering

我们有一个带有用户控件的WPF页面,我们使用BitmapCache - 当我们尝试通过使用空路径(New Path())更新属性(数据绑定)来清除此元素时,它没有完全刷新/清除。如果我稍微更改窗口大小,则BitmapCache处于活动状态的区域将被完全清除。

清除/刷新使用BitmapCache的元素有什么特别之处吗?

这是我们的代码:

    <me:ScrollViewer
    RenderedWaves="{Binding RenderedWaves}"
    ItemTemplate="{DynamicResource DataTemplateForWaveItem}" 
    ItemsPanel="{DynamicResource ItemsPanelTemplateForWaveItems}" 
    CacheMode="BitmapCache" />

我以为我修好了,但不是每次都有效......

此代码设置路径不会立即更新BitmapCache:

Protected WriteOnly Property SetGraph As Path
 Set(value As Path)
    If value Is Nothing Then value = GetEmptyPath()
    _graph = value
    OnPropertyChanged(New PropertyChangedEventArgs(PropertyNameGraph))
 End Set
End Property

此代码有时更新它:

Protected WriteOnly Property SetGraph As Path
Set(value As Path)
    UIDispatcherLocator.UIDispatcher.Invoke(Sub()
                                                If value Is Nothing Then value = GetEmptyPath()
                                                _graph = value
                                            End Sub, Threading.DispatcherPriority.Background)
    OnPropertyChanged(New PropertyChangedEventArgs(PropertyNameGraph))
End Set
End Property

1 个答案:

答案 0 :(得分:0)

你是否可以在需要时在对象上创建一个新事件,并且在调用时将object =设置为由use语句临时创建的新对象,如果你可以使它继承自system.idisposable或者你只是完成后将其设置为null?我不知道它的代码,但我喜欢这样的代码:

MyEvent += new event(object b);

event(object b)
{
  using (custom_ScrollViewer = new custom_ScrollViewer)
{ 
OnScreen_ScrollViewer = Custom_ScrollViewer;

}; 
// or 
custom_ScrollViewer = new custom_ScrollViewer;
OnScreen_ScrollViewer = Custom_ScrollViewer;
custom_ScrollViewer = null;

}