HeapProfiler.MainWindow.ViewAllocationCountMenu_Click C# (CSharp) Method

ViewAllocationCountMenu_Click() private method

private ViewAllocationCountMenu_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void ViewAllocationCountMenu_Click(object sender, EventArgs e)
        {
            SnapshotTimeline.ItemValueGetter = GetAllocationCount;
            SnapshotTimeline.ItemValueFormatter = FormatCount;
        }
MainWindow