private void ShowTypeTreeInView(string typeName, bool inverse)
        {
            HeapShotProfilingSnapshotView view = new HeapShotProfilingSnapshotView(typeName);

            view.Load(snapshot, inverse);
            IdeApp.Workbench.OpenDocument(view, true);
        }
Пример #2
0
        public override void ActivateItem()
        {
            HeapShotProfilingSnapshot     snapshot = (HeapShotProfilingSnapshot)CurrentNode.DataItem;
            HeapShotProfilingSnapshotView view     = new HeapShotProfilingSnapshotView();

            view.Load(snapshot, false);
            IdeApp.Workbench.OpenDocument(view, true);
        }
		public override void ActivateItem ()
		{
			HeapShotProfilingSnapshot snapshot = (HeapShotProfilingSnapshot)CurrentNode.DataItem;
			HeapShotProfilingSnapshotView view = new HeapShotProfilingSnapshotView ();
			view.Load (snapshot, false);
			IdeApp.Workbench.OpenDocument (view, true);
		}
		private void ShowTypeTreeInView (string typeName, bool inverse)
		{
			HeapShotProfilingSnapshotView view = new HeapShotProfilingSnapshotView (typeName);
			view.Load (snapshot, inverse);
			IdeApp.Workbench.OpenDocument (view, true);
		}