Client/MainForm.cs
changeset 65 464486b81635
parent 63 cd9924457275
child 67 6e50baf5a811
     1.1 --- a/Client/MainForm.cs	Mon Sep 22 22:04:39 2014 +0200
     1.2 +++ b/Client/MainForm.cs	Fri Oct 03 18:43:55 2014 +0200
     1.3 @@ -152,8 +152,11 @@
     1.4  
     1.5          private void buttonLayoutUpdate_Click(object sender, EventArgs e)
     1.6          {
     1.7 +            //Define a 2 by 2 layout
     1.8              TableLayout layout = new TableLayout(2,2);
     1.9 +            //Second column only takes up 25%
    1.10              layout.Columns[1].Width = 25F;
    1.11 +            //Send layout to server
    1.12              iClient.SetLayout(layout);
    1.13          }
    1.14      }