Completed
Last Updated: 10 Aug 2016 08:48 by ADMIN
ADMIN
George
Created on: 16 Sep 2014 08:25
Category: Form
Type: Bug Report
0
FIX. RadForm - setting the AllowTheming property renders the close/minimize/maximize buttons not usable in Windows 7
To reproduce:

Create a RadForm and use the following code:

public Form1()
{
    InitializeComponent();

    var theme = new Telerik.WinControls.Themes.Windows7Theme();
    ThemeResolutionService.ApplicationThemeName = theme.ThemeName;// "Windows7";
    this.AllowTheming = false;
}

Start the application on Windows 7, you will see that the close/minimize/maximize buttons cannot be clicked.

Workaround:

Do not set the AllowTheming property or set it to true
0 comments