Beispiel #1
0
 public override void ApplySettings()
 {
     _settings.SetValue("AutoCompletion.AutoComplete", autoListMembersCheckBox.Checked);
     _settings.SetValue("AutoCompletion.ShowSuggestionsWhenTyping", showSuggestionsListComboBox.SelectedIndex == 0);
     _settings.SetValue("AutoCompletion.AutoCompleteCommitChars", autoCompleteCharsTextBox.Text.Trim());
     _settings.SetValue("AutoCompletion.AutoCompleteCommitOnSpaceBar", completeOnSpaceBarCheckBox.Checked);
     _settings.SetValue("AutoCompletion.AutoCompleteCommitOnTab", completeOnTabCheckBox.Checked);
     _settings.SetValue("AutoCompletion.AutoCompleteCodeBlocks", autoCompleteCodeBlocksCheckBox.Checked);
     _settings.SetValue("AutoCompletion.AutoCompleteMethodParantheses", autoAddParanthesesCheckBox.Checked);
 }
 public override void ApplySettings()
 {
     _settings.SetValue("General.LineNumbers", lineNumbersCheckBox.Checked);
     _settings.SetValue("General.WordWrap", wordWrapCheckBox.Checked);
     _settings.SetValue("General.SyntaxHighlighting", syntaxHighlightingCheckBox.Checked);
     _settings.SetValue("General.TrackUnsavedChanges", trackChangesCheckBox.Checked);
     _settings.SetValue("General.HighlightCurrentLine", highLightCurrentLineCheckBox.Checked);
     _settings.SetValue("General.ShowDocumentMiniMap", documentMiniMapCheckBox.Checked);
 }