While experimenting with a workaround, I was trying to closely align 3 editors so I could create a PropertyGrid style panel. Using the code below, the controls overlap each, but if I use the MS controls they align perfectly - am I missing something.
Dim d As New RadTextBox
d.Size = New System.Drawing.Size(95, 14)
d.Location = New System.Drawing.Point(300, 200)
d.Text = "Text One"
TabItem4.ContentPanel.Controls.Add(d)
Dim e As New RadDateTimePicker
e.Size = d.Size
e.Left = d.Left
e.Top = d.Bounds.Bottom
TabItem4.ContentPanel.Controls.Add(e)
Dim f As New RadMaskedEditBox
f.Size = d.Size
f.Left = d.Left
f.Top = e.Bounds.Bottom
f.Text = "Text Two"
TabItem4.ContentPanel.Controls.Add(f)
Any suggestions?
Thanks.