private void AppyTheme()
        {
            string  fileName    = THEME_PATH;
            C1Theme customTheme = new C1Theme();

            customTheme.Load(fileName);
            customTheme.ApplyThemeToControlTree(this, (x) => x != connectionPropertyGrid);
            customTheme.ApplyThemeToObject(connectionPropertyGrid);
            customTheme.ApplyThemeToObject(connectionPropertyGrid.C1ScrollBar);
        }