3

データグリッドのリークに関する多くの記事を書きましたが、正しい方法を見つけることができませんでした。再現するコードを次に示します。データグリッドとボタンがあり、ボタンを押すたびに乱数でテーブルを埋め、10MB のメモリを消費し、解放しません。TextBlock にバインドしてもメモリ リークは発生しませんが、テキスト ボックスの双方向バインディングが必要です。

<Window x:Class="test.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525">
<Grid>
    <Grid.RowDefinitions>
        <RowDefinition></RowDefinition>
        <RowDefinition></RowDefinition>
    </Grid.RowDefinitions>
    <DataGrid Name="dg" Grid.Row="0" AutoGenerateColumns="False" ItemsSource="{Binding}">
        <DataGrid.Columns>
            <DataGridTemplateColumn>
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <TextBox Text="{Binding Text0}"></TextBox>
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>
            <DataGridTemplateColumn>
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <TextBox Text="{Binding Text1}"></TextBox>
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>
            <DataGridTemplateColumn>
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <TextBox Text="{Binding Text2}"></TextBox>
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>
            <DataGridTemplateColumn>
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <TextBox Text="{Binding Text3}"></TextBox>
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>
            <DataGridTemplateColumn>
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <TextBox Text="{Binding Text4}"></TextBox>
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>
            <DataGridTemplateColumn>
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <TextBox Text="{Binding Text5}"></TextBox>
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>
            <DataGridTemplateColumn>
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <TextBox Text="{Binding Text6}"></TextBox>
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>
            <DataGridTemplateColumn>
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <TextBox Text="{Binding Text7}"></TextBox>
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>
            <DataGridTemplateColumn>
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <TextBox Text="{Binding Text8}"></TextBox>
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>
            <DataGridTemplateColumn>
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <TextBox Text="{Binding Text9}"></TextBox>
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>
        </DataGrid.Columns>
    </DataGrid>
    <Button Content="update" Grid.Row="1" Width="Auto" Height="Auto" Click="Button_Click"></Button>
</Grid>

namespace test
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();


    }

    public ObservableCollection<obj> res;
    private void Button_Click(object sender, RoutedEventArgs e)
    {
        res = new ObservableCollection<obj>();


        for (var i = 0; i < 20; i++)
        {
            res.Add(new obj
            {
                Text0 = ((new Random()).NextDouble() * 100).ToString(),
                Text1 = ((new Random()).NextDouble() * 100).ToString(),
                Text2 = ((new Random()).NextDouble() * 100).ToString(),
                Text3 = ((new Random()).NextDouble() * 100).ToString(),
                Text4 = ((new Random()).NextDouble() * 100).ToString(),
                Text5 = ((new Random()).NextDouble() * 100).ToString(),
                Text6 = ((new Random()).NextDouble() * 100).ToString(),
                Text7 = ((new Random()).NextDouble() * 100).ToString(),
                Text8 = ((new Random()).NextDouble() * 100).ToString(),
                Text9 = ((new Random()).NextDouble() * 100).ToString(),
            });
        }
        dg.DataContext = res;
    }


}
public class obj : INotifyPropertyChanged
{
    private string text0;
    public string Text0
    {
        get
        {
            return text0;
        }
        set
        {
            text0 = value;
            NotifyPropertyChanged("Text0");
        }
    }
    private string text1;
    public string Text1
    {
        get
        {
            return text1;
        }
        set
        {
            text1 = value;
            NotifyPropertyChanged("Text1");
        }
    }
    private string text2;
    public string Text2
    {
        get
        {
            return text2;
        }
        set
        {
            text2 = value;
            NotifyPropertyChanged("Text2");
        }
    }
    private string text3;
    public string Text3
    {
        get
        {
            return text3;
        }
        set
        {
            text3 = value;
            NotifyPropertyChanged("Text3");
        }
    }
    private string text4;
    public string Text4
    {
        get
        {
            return text4;
        }
        set
        {
            text4 = value;
            NotifyPropertyChanged("Text4");
        }
    }
    private string text5;
    public string Text5
    {
        get
        {
            return text5;
        }
        set
        {
            text5 = value;
            NotifyPropertyChanged("Text5");
        }
    }
    private string text6;
    public string Text6
    {
        get
        {
            return text6;
        }
        set
        {
            text6 = value;
            NotifyPropertyChanged("Text6");
        }
    }
    private string text7;
    public string Text7
    {
        get
        {
            return text7;
        }
        set
        {
            text7 = value;
            NotifyPropertyChanged("Text7");
        }
    }
    private string text8;
    public string Text8
    {
        get
        {
            return text8;
        }
        set
        {
            text8 = value;
            NotifyPropertyChanged("Text8");
        }
    }
    private string text9;
    public string Text9
    {
        get
        {
            return text9;
        }
        set
        {
            text9 = value;
            NotifyPropertyChanged("Text9");
        }
    }

    private void NotifyPropertyChanged(String info)
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(info));
        }
    }
    public event PropertyChangedEventHandler PropertyChanged;
}

}

4

2 に答える 2

1

TextBoxWPF にはUndo\Redoスタックが関連付けられており、新しい値に変更されると、やり直し/元に戻すことができる値が格納されます。TextBoxesの解放されていないメモリが説明されている可能性があります。

今、あなたはItemsSource毎回新鮮に設定しているのかと尋ねるかもしれません. それは新しく再生成することになっているのではありませんTextBoxes(新しく生成されたものは古いスタックTextBoxを保持する可能性がありません)。生成されたをリサイクルして再利用すると思います。 UndoDatagridItemsContainerTextBoxes

しかし、それは私の憶測です!!!

Undoスタックを制限してみて、うまくいくかどうかを再確認してください...

http://social.msdn.microsoft.com/Forums/en/wpf/thread/376f7765-1c70-4289-a59b-e27c168a0fa2

于 2012-10-26T05:41:42.533 に答える
1

DataGridTemplateColumn の代わりに DataGridTextColumn を使用できる場合、メモリ リークは発生しません。

DataGridTemplateColumn にメモリリークがある理由がわからない

編集:

また、OberservableColletion を 1 回だけ初期化し、datacontext を 1 回だけ設定し、button_click で clear を使用します。

編集: DataGridTemplateColumn のメモリリークの問題は、.NET4.5 ではなくなったようです

于 2012-10-26T06:53:03.493 に答える