private void UpdateForm()
    {
        comboBoxProducts.Items.Clear();
        comboBoxProducts.Items.AddRange(settings.GetProducts());

        dataGridView.Update();
        //Other updates
    }