I\'m using Visual Studio 2010 with C#. Is there a concept in Windows Forms development of somehow linking a label with is text box? Something so that they move together as
If you want to group labels with other controls (or group controls in general), then use the System.Windows.Forms.Panel control. The specific purpose of the Panel control is to group collections of controls.
More information Panel Class (System.Windows.Forms)
If you want a higher degree of control (rather than using a Panel), then you could create a UserControl, that encapsulates a Label and a Control.