Added Paste Plain Text and Paste No Returns options to System Options

This commit is contained in:
Rich
2012-12-01 00:23:41 +00:00
parent 1b30632829
commit 3b0062bc7e
6 changed files with 157 additions and 5 deletions

View File

@@ -327,5 +327,29 @@ namespace VEPROMS.Properties {
this["UpdateSettings"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool PasteNoReturns {
get {
return ((bool)(this["PasteNoReturns"]));
}
set {
this["PasteNoReturns"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("False")]
public bool PastePlainText {
get {
return ((bool)(this["PastePlainText"]));
}
set {
this["PastePlainText"] = value;
}
}
}
}

View File

@@ -80,5 +80,11 @@
<Setting Name="UpdateSettings" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
</Setting>
<Setting Name="PasteNoReturns" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
<Setting Name="PastePlainText" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
</Setting>
</Settings>
</SettingsFile>