Index: Core/Common/src/Core.Common.Gui/ColorTheme.cs =================================================================== diff -u -rc27aa10e3d9924c856ba3ed81ca12c96a56fe635 -r895c40e163ee005220d561851df27234e387b2f2 --- Core/Common/src/Core.Common.Gui/ColorTheme.cs (.../ColorTheme.cs) (revision c27aa10e3d9924c856ba3ed81ca12c96a56fe635) +++ Core/Common/src/Core.Common.Gui/ColorTheme.cs (.../ColorTheme.cs) (revision 895c40e163ee005220d561851df27234e387b2f2) @@ -3,6 +3,9 @@ namespace Core.Common.Gui { + /// + /// Enumeration for the all the possible color themes in the application. + /// public enum ColorTheme { Dark, @@ -13,8 +16,17 @@ Generic } + /// + /// Extension methods for the class + /// public static class ColorThemeExtensions { + /// + /// Gets the localized string from the based on the + /// name of the . + /// + /// The for which to get the localized name. + /// The localized name from the . public static string Localized(this ColorTheme theme) { return Resources.ResourceManager.GetString(Enum.GetName(typeof(ColorTheme), theme)); Index: Core/Common/src/Core.Common.Gui/Forms/OptionsDialog/ColorThemeItem.cs =================================================================== diff -u -rc27aa10e3d9924c856ba3ed81ca12c96a56fe635 -r895c40e163ee005220d561851df27234e387b2f2 --- Core/Common/src/Core.Common.Gui/Forms/OptionsDialog/ColorThemeItem.cs (.../ColorThemeItem.cs) (revision c27aa10e3d9924c856ba3ed81ca12c96a56fe635) +++ Core/Common/src/Core.Common.Gui/Forms/OptionsDialog/ColorThemeItem.cs (.../ColorThemeItem.cs) (revision 895c40e163ee005220d561851df27234e387b2f2) @@ -5,7 +5,14 @@ /// public class ColorThemeItem { + /// + /// Gets or sets the for this item. + /// public ColorTheme Theme { get; set; } + + /// + /// Gets or sets the name to display for the . + /// public string DisplayName { get; set; } } } \ No newline at end of file