hiii
i just add 4 windows forms as tol window in a dock control, but i can't set its location that i need...
how can i set the form location in raddock.
i'm using these codes form adding forms to raddock but it shwoing as verticle.. i need to re order it like 2 column and 2 row table.. i mean the first row have 2 frms and second row too...
how can i ???
Thanks,
Shinurag
i just add 4 windows forms as tol window in a dock control, but i can't set its location that i need...
how can i set the form location in raddock.
i'm using these codes form adding forms to raddock but it shwoing as verticle.. i need to re order it like 2 column and 2 row table.. i mean the first row have 2 frms and second row too...
how can i ???
frm1 = new Form(); |
frm2 = new Form(); |
frm3 = new Form(); |
frm4 = new Form(); |
frm1.BackColor = Color.Pink; |
frm1.Text = "My Form1"; |
this.radDock1.DockControl(frm1, DockPosition.Right); |
frm2.BackColor = Color.Pink; |
frm2.Text = "My Form2"; |
this.radDock1.DockControl(frm2, DockPosition.Left); |
frm3.BackColor = Color.Pink; |
frm3.Text = "My Form3"; |
this.radDock1.DockControl(frm3, DockPosition.Left); |
frm4.BackColor = Color.Pink; |
frm4.Text = "My Form4"; |
this.radDock1.DockControl(frm4, DockPosition.Left); |
Shinurag