As a workaround, you can set the ItemHeight property in the form's constructor.
Sub New()
' This call is required by the designer.
InitializeComponent()
' Add any initialization after the InitializeComponent() call.
Me.RadDropDownList1.ListElement.ItemHeight = 30
End Sub
Regards,