public void saveSettings() { RegMemory.SetString("soundPrintFinished", filePrintFinished); RegMemory.SetString("soundPrintPaused", filePrintPaused); RegMemory.SetString("soundError", fileError); RegMemory.SetString("soundSoundCommand", fileSoundCommand); RegMemory.SetBool("soundPrintFinishedEnabled", checkPrintFinished.Checked); RegMemory.SetBool("soundPrintPausedEnabled", checkPrintPaused.Checked); RegMemory.SetBool("soundErrorEnabled", checkError.Checked); RegMemory.SetBool("soundSoundCommandEnabled", checkSoundCommand.Checked); }
private void textExtrudeSpeed_TextChanged(object sender, EventArgs e) { RegMemory.SetString("panelExtrudeSpeed", textExtrudeSpeed.Text); }
private void textRetractAmount_TextChanged(object sender, EventArgs e) { RegMemory.SetString("panelRetractAmount", textRetractAmount.Text); }
public void selectLanguage(Translation t) { active = t; RegMemory.SetString("lastLanguage", t.fileshort); }