// Открываем диалоговое окно настроек приложения private void toolStripButtonSetting_Click(object sender, EventArgs e) { SetDlg setDlg = new SetDlg(); setDlg.LengthSides = LengthSides; if (setDlg.ShowDialog() == DialogResult.OK) { LengthSides = setDlg.LengthSides; CreatePictureRegion(); } }
/// <summary> /// Настройки пользователя /// </summary> private void SettingUser() { var setDlg = new SetDlg { numRect = this.numRect }; if (setDlg.ShowDialog() == DialogResult.OK) { this.numRect = setDlg.numRect; CreatePictureSegments(); } }
// Открываем диалоговое окно настроек приложения. private void toolStripButtonSetting_Click(object sender, EventArgs e) { SetDlg setDlg = new SetDlg(); setDlg.LengthSides = LengthSides; if (setDlg.ShowDialog() == DialogResult.OK) { LengthSides = setDlg.LengthSides; CreatePictureRegion(); } }