.NET
wlayout.txt
Associated article: Windows Forms Layout Managers
Tags: .NET Design
Published source code examples accompanying the article by Richard Grimes in which he examines Windows Forms, the .NET library for writing windows-based GUI applications.
Windows Forms Layout Managers
by Richard Grimes
Listing One
class App : Form
{
App()
{
Button b1, b2, b3;
b1 = new Button();
b1.Left = 0;
b1.Width = 60;
b1.Text = "One";
b1.Click+=new EventHandler(click);
b2 = new Button();
b2.Left = 40;
b2...


