| Reply To Message: |
| Posted By |
Don on 2/1/2005 10:44:22 AM |
| Subject: |
Maximize a control to the size of the form |
| Message: |
Similar to Delphi MyControl.Align := alClient; This maximizes a tabControl to the size of the form. private void Form1_Resize(object sender, System.EventArgs e) { tabControl1.Bounds = this.ClientRectangle; } |
|