VSSonarExtensionUi.ViewModel.Configuration.VSonarQubeOptionsViewModel.UpdateTheme C# (CSharp) Method

UpdateTheme() private method

The update theme.
private UpdateTheme ( Color background, Color foreground ) : void
background Color The background.
foreground Color The foreground.
return void
        internal void UpdateTheme(Color background, Color foreground)
        {
            this.BackGroundColor = background;
            this.ForeGroundColor = foreground;

            foreach (IViewModelBase view in this.AvailableOptionsViews)
            {
                view.UpdateColours(background, foreground);
            }
        }