This commit is contained in:
2008-03-03 15:12:10 +00:00
parent b776ddf05f
commit ca755949d6
5 changed files with 152 additions and 66 deletions

View File

@@ -52,6 +52,7 @@ namespace VEPROMS
cbRibonSilver.Checked = true;
break;
}
colorPickerButton1.SelectedColor = Settings.Default.TransitionRangeColor;
}
@@ -135,6 +136,14 @@ namespace VEPROMS
RibbonPredefinedColorSchemes.ChangeOffice2007ColorTable((eOffice2007ColorScheme)Settings.Default.SystemColor);
}
private void colorPickerButton1_SelectedColorChanged(object sender, EventArgs e)
{
if (!_initializing)
{
Settings.Default.TransitionRangeColor = colorPickerButton1.SelectedColor;
}
}