public Label(string name, string text, Point location, Size size) : this(name, text, new Rectangle(location, size), FontInfo.GetInstance(12, FontTypes.Sans)) { }
public Label(string name, string text, int x, int y, int width, int height) : this(name, text, new Rectangle(x, y, width, height), FontInfo.GetInstance(12, FontTypes.Sans)) { }