예제 #1
0
		public override void Dispose()
		{
			base.Dispose();

			if (null != _controller)
			{
				_controller.Dispose();
				_controller = null;
			}
		}
예제 #2
0
		public SDGraphViewContent(Altaxo.Gui.Graph.Gdi.Viewing.GraphController ctrl)
		{
			_controller = ctrl;
			ctrl.TitleNameChanged += new WeakEventHandler(this.EhTitleNameChanged, x => ctrl.TitleNameChanged -= x);
			SetTitle();
		}