Form goes under windows taskbar based on following conditions.
WindowState = Maximized
MinimizeBox = false
MaximizeBox = false
Also when there is no icon (ShowIcon = false) Form text, first letter is clipped.
I have also updated your Telerik points.
Currently, the possible solution that I can suggest is to avoid using the FormWindowState.Maximized and adjust the size of the form according to the screen dimensions. As to the title bar and the cut text, you can apply some margin on the left:
this
.FormElement.TitleBar.TitlePrimitive.Margin =
new
Padding(10, 0, 0, 0);
I hope this information helps. If you need any further assistance please don't hesitate to contact me.