private void kryptonCheckSet1_CheckedButtonChanged(object sender, EventArgs e)
        {
            if (FrontsCatalog == null || DecorCatalog == null)
            {
                return;
            }

            if (kryptonCheckSet1.CheckedButton.Name == "DecorCheckButton")
            {
                GetDecorItems();
                GetDecorColors();
                GetDecorPatina();
                GetDecorHeight();
                GetDecorWidth();
                GetDecorLength();
                GetDecorZOVPrice();
                DecorCatalogPanel.BringToFront();
            }
            else
            {
                GetFrameColors();
                GetTechnoFrameColors();
                GetPatina();
                GetInsetTypes();
                GetInsetColors();
                GetTechnoInsetTypes();
                GetTechnoInsetColors();
                GetFrontHeight();
                GetFrontWidth();
                GetFrontsZOVPrice();
                FrontsCatalogPanel.BringToFront();
            }
        }
 private void DecorCheckButton_Click(object sender, EventArgs e)
 {
     GetDecorItems();
     GetDecorColors();
     GetDecorPatina();
     GetDecorHeight();
     GetDecorWidth();
     GetDecorLength();
     GetDecorMarketingPrice();
     DecorCatalogPanel.BringToFront();
 }