FIX. RadForm - setting AllowTheming in inherited form breaks the border and the system buttons styles.
To reproduce:
public partial class RadForm1 : MyForm
{
public RadForm1()
{
InitializeComponent();
}
}
public class MyForm : RadForm
{
public MyForm()
{
this.AllowTheming = false;
}
}