public Config(MainForm src) { // // The InitializeComponent() call is required for Windows Forms designer support. // InitializeComponent(); // // TODO: Add constructor code after the InitializeComponent() call. // Host=src; }
public Settings(MainForm src) { // // The InitializeComponent() call is required for Windows Forms designer support. // InitializeComponent(); // // TODO: Add constructor code after the InitializeComponent() call. // Host=src; this.BackColor = MainForm.ListBackground(); checkBox1.Checked = MainForm.Dark; checkBox2.Checked = MainForm.alternating; checkBox3.Checked = MainForm.PlaylistColors; checkBox4.Checked = MainForm.FadeOddEntries; }
public static void Colorize(MainForm d,Color C) { MainForm.PrimaryColor=C; d.Colorize(); }