Inheritance: System.Windows.Forms.Panel
Exemplo n.º 1
0
		public void SetView(View v)
		{
			if (view != null)
			{
				v.Map = view.Map;
				this.Controls.Remove(view);
			}

			view = v;

			view.Location = new Point(0, 0);
			view.BorderStyle = BorderStyle.Fixed3D;

			vert.Minimum = 0;
			vert.Value = vert.Minimum;

			view.Width = ClientSize.Width - vert.Width - 1;

			this.Controls.Add(view);
		}