Graph.GraphForm.GraphForm C# (CSharp) Method

GraphForm() public method

public GraphForm ( ) : System
return System
		public GraphForm()
		{
			InitializeComponent();

			this.graph = new Graph();
			this.graph.Location = new System.Drawing.Point(0, 0);
			this.graph.Size = this.ClientSize;
			this.graph.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Top;
			this.graph.AutoScale();

			this.Controls.Add(this.graph);
		}