Windows Forms

  • Thread starter Thread starter John Denver
  • Start date Start date
J

John Denver

Can anyone point me to a good article on to correctly make a windows form?
For example, I've got a simple window that when I drag it to resize it, the
window resizes but, the text boxes stay the same size, and gray area appears
where I've resized to main window to a larger size.

Thanks
 
Can anyone point me to a good article on to correctly make a windows form?
For example, I've got a simple window that when I drag it to resize it, the
window resizes but, the text boxes stay the same size, and gray area appears
where I've resized to main window to a larger size.

Have a look at Control.Dock and Control.Anchor properties, and
classess TableLayoutPanel and FlowLayoutPanel, on MSDN.

In general, there's no "good article" on WinForms programming; it's a
very large subject that can be covered by a decent book, but
definitely not by a single article.
 
Back
Top