Where can I find a good, succinct introduction to Windows Forms?
See Windows Forms: A Modern-Day Programming Model for Writing GUI Applications by Jeff Prosise from MSDN Magazine, February 2001. Also see Using the Microsoft .NET Framework to Create Windows-based Applications by Shawn Burke in the MSDN Library. Contributed from George Shepherd’s Windows Forms FAQ, # No product version has been specified for this FAQ item. Please report status updates here. • How do I set the default button for a form? Set the form’s AcceptButton property. You can do this either through the designer, or through code such as form1.AcceptButton = button1; Contributed from George Shepherd’s Windows Forms FAQ, # No product version has been specified for this FAQ item. Please report status updates here. • How do I return values from a form? Add public properties to your form. Then these properties can be accessed by any object that creates an instance of your form. Contributed from George Shepherd’s Windows Forms FAQ, # No product version has been specified for this FAQ it