private void ClosedForm(object sender, FormClosingEventArgs e)
 {
     e.Cancel = true;
     SettingsWindowController.ClosedForm();
 }
 private void BackBtn(object sender, EventArgs e)
 {
     SettingsWindowController.BackBtn();
 }
 private void SoundBtn(object sender, EventArgs e)
 {
     SettingsWindowController.SoundBtn();
 }
 private void GraphicsBtn(object sender, EventArgs e)
 {
     SettingsWindowController.GraphicsBtn();
 }
 private void ShowWindow()
 {
     Show();
     SettingsWindowController.InitializeForm();
 }
 private void InitializeForm(object sender, EventArgs e)
 {
     SettingsWindowController.InitializeForm();
 }