System.Windows.Forms.Control.Control C# (CSharp) Method

Control() public method

public Control ( Control parent, string text, int left, int top, int width, int height ) : System
parent Control
text string
left int
top int
width int
height int
return System
		public Control (Control parent, string text, int left, int top, int width, int height) : this()
		{
			Parent=parent;
			SetBounds(left, top, width, height, BoundsSpecified.All);
			Text=text;
		}

Same methods

Control::Control ( ) : System
Control::Control ( Control parent, string text ) : System
Control::Control ( string text ) : System
Control::Control ( string text, int left, int top, int width, int height ) : System
Control