public static void SetImageListViewPalettes(KryptonManager kryptonManager, Manina.Windows.Forms.ImageListView imageListView)
        {
            KryptonPalette palette = (KryptonPalette)kryptonManager.GlobalPalette;

            // Get the two colors and angle used to draw the control background
            imageListView.BackColor  = palette.GetBackColor1(PaletteBackStyle.ControlClient, imageListView.Enabled ? PaletteState.Normal : PaletteState.Disabled);
            imageListView.ForeColor  = palette.GetContentShortTextColor1(PaletteContentStyle.ButtonStandalone, PaletteState.Normal);
            imageListView.Font       = palette.GetContentShortTextNewFont(PaletteContentStyle.ButtonStandalone, PaletteState.Normal);
            imageListView.HeaderFont = palette.GetContentLongTextNewFont(PaletteContentStyle.ButtonStandalone, PaletteState.Normal);
        }