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

@@ -57,9 +57,23 @@ namespace VEPROMS
cbAnnotationPopup.Checked = Settings.Default.AutoPopUpAnnotations;
cbStepTypeToolTip.Checked = Settings.Default.StepTypeToolTip;
cbTVExpand.Checked = Settings.Default.SaveTreeviewExpanded;
cbPasteNoReturns.Checked = Settings.Default.PasteNoReturns;
cbPastePlainText.Checked = Settings.Default.PastePlainText;
}
private void cbPastePlainText_CheckedChanged(object sender, EventArgs e)
{
if (!_initializing)
{
Settings.Default.PastePlainText = cbPastePlainText.Checked;
}
}
private void cbPasteNoReturns_CheckedChanged(object sender, EventArgs e)
{
if (!_initializing)
{
Settings.Default.PasteNoReturns = cbPasteNoReturns.Checked;
}
}
private void cbRibonBlue_CheckedChanged(object sender, EventArgs e)
{
if (!_initializing)