What are the purpose of User Controls in Visual C#?
问题 User Controls -- Do they serve a special purpose? As far as I can tell they are no different to forms - they have the same toolbox and features. Are there certain times when they are appropriate to use over forms? It would be interesting to understand what they are good for. 回答1: You use them to group a set of controls and behaviors together in a re-usable way. You can't show a control on the screen unless it's added to a form somewhere. One good example is a textbox. It's very common to have