private void viewHistogramRelocatedMenuItem_Click(object sender, System.EventArgs e) { if (clrProfiler.lastLogResult != null) { string title = "Histogram by Size for Relocated Objects"; HistogramViewForm histogramViewForm = new HistogramViewForm(clrProfiler.lastLogResult.relocatedHistogram, title); histogramViewForm.Show(); } }
private void viewHistogramCriticalFinalizerMenuItem_Click(object sender, System.EventArgs e) { if (clrProfiler.lastLogResult != null) { string title = "Histogram by Size for Critical Finalized Objects"; HistogramViewForm histogramViewForm = new HistogramViewForm(clrProfiler.lastLogResult.criticalFinalizerHistogram, title); histogramViewForm.Show(); } }
private void viewHistogram_Click(object sender, System.EventArgs e) { HistogramViewForm histogramViewForm = new HistogramViewForm(); histogramViewForm.Visible = true; }