HeapProfiler.MainWindow.SnapshotTimeline_SelectionChanged C# (CSharp) 메소드

SnapshotTimeline_SelectionChanged() 개인적인 메소드

private SnapshotTimeline_SelectionChanged ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void
        private void SnapshotTimeline_SelectionChanged(object sender, EventArgs e)
        {
            DiffSelection.Enabled = SnapshotTimeline.HasSelection &&
                (SnapshotTimeline.Selection.First != SnapshotTimeline.Selection.Second);
            ViewSelection.Enabled = SnapshotTimeline.HasSelection &&
                (SnapshotTimeline.Selection.First == SnapshotTimeline.Selection.Second);
        }
MainWindow