Hello!
I'm creating an app where you can open Settings form and choose the background color, etc.
This is how it looks like when one clicks on the color settings button:
ColorDialog dlg = new ColorDialog();
dlg.Color = Properties.Settings.Default.bgdColor;
if (dlg.ShowDialog() == DialogResult.OK)
{
Properties.Settings.Default.bgdColor = dlg.Color;
Properties.Settings.Default.Save();
bgdColorLBL.BackColor = dlg.Color;
}
What am I supposed to do to apply those settings on every form my application contains?