为什么Silverlight ContentControls不是垃圾回收?

时间:2010-11-26 19:10:37

标签: silverlight user-controls lifecycle

我一直在研究为什么我的某些控件没有被垃圾收集,并且注意到很容易阻止从ContentControl继承的简单控件被破坏。这是一个例子:

这是我的自定义ContentControl:

 public class MyCustomControl : ContentControl
{

    public MyCustomControl()
    {
        Debug.WriteLine("Constructed");
    }

    ~MyCustomControl()
    {
        Debug.WriteLine("Destroyed");
    }
}

现在如果我把它放在这样的页面上:

<navigation:Page x:Class="SimpleTestBed.Views.CustomControl" 
       xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
       xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
       xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
       xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
       mc:Ignorable="d"
       xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
             xmlns:local="clr-namespace:SimpleTestBed"
       d:DesignWidth="640" d:DesignHeight="480"
       Title="CustomControl Page">
<Grid x:Name="LayoutRoot">

    <StackPanel>
        <local:MyCustomControl>
            <TextBox Text="{Binding SomeProperty,Mode=TwoWay}"></TextBox>
        </local:MyCustomControl>
    </StackPanel>

</Grid>

使用以下代码:

 public partial class CustomControl : Page
{
    public CustomControl()
    {
        InitializeComponent();

        this.DataContext = new CustomControlViewModel();

        this.Unloaded += new RoutedEventHandler(OnUnloaded);
    }

    void OnUnloaded(object sender, RoutedEventArgs e)
    {
        this.DataContext = null;
    }

    // Executes when the user navigates to this page.
    protected override void OnNavigatedTo(NavigationEventArgs e)
    {
    }



}

然后视图模型是:

  public class CustomControlViewModel : INotifyPropertyChanged
{

    #region INotifyPropertyChanged
    public event PropertyChangedEventHandler PropertyChanged;
    protected void OnPropertyChanged(string propertyName)
    {
        RaisePropertyChanged(propertyName);
    }
    private void RaisePropertyChanged(string propertyName)
    {
        if (PropertyChanged != null)
            PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
    }
    #endregion


    private string _someProperty = "Initial Value";
    public string SomeProperty
    {
        get { return _someProperty; }
        set
        {
            if (_someProperty != value)
            {
                string oldValue = _someProperty;
                _someProperty = value;
                OnPropertyChanged("SomeProperty");
                OnSomePropertyChanged(oldValue, value);
            }
        }
    }



    protected virtual void OnSomePropertyChanged(string oldValue, string newValue)
    {

    }


}

现在,当我离开此页面并尝试使用GC.Collect()进行垃圾收集时,只要我没有对文本框中的文本进行任何更改,ContentControl和Page就会按照GC的预期进行销毁。但是,如果我编辑了一些文本并导航离开页面然后尝试GC.Collect(),则ContentControl不会收集垃圾。

任何人都可以解释这种行为吗?

实际上,您可以通过在卸载时“闪烁”控件的模板来强制GC收集控件:

  void MyCustomControl_Unloaded(object sender, RoutedEventArgs e)
    {
        Debug.WriteLine("MyCustomControl Unloaded");
        ControlTemplate oldTemplate = this.Template;
        this.Template = null;
        this.Template = oldTemplate;
    }

我认为这会破坏当前的可视树,将树的第一个组件的引用丢失给它的父(自定义控件)。它肯定会强制控件在重新加载控件时调用OnApplyTemplate。

这是开发Silverlight控件而不泄漏的正确模式吗?如果是这样,当控件卸载时,模板不会自动处理,这有点奇怪。

对于这种行为的一个很好的解释将非常受欢迎,因为它直接进入Silverlight控件生命周期的核心。

1 个答案:

答案 0 :(得分:-1)

我的经验表明,Silverlight中的内存泄漏是由前两个原因引起的:

  • Events =&gt;确保在不需要时或在类析构函数中删除附加事件。
  • Templates =&gt;解决方案在资源部分
  • 中定义模板