Update() public method

public Update ( ) : void
return void
        private void VSColorTheme_ThemeChanged(ThemeChangedEventArgs e)
        {
            m_colors.Update();
            Graphics graphics = Graphics.FromImage(m_emptyBitmap);

            graphics.Clear(m_colors.ClearColor);
            UpdateItems();
        }
        private void VSColorTheme_ThemeChanged(ThemeChangedEventArgs e)
        {
            m_colors.Update();
            Graphics graphics = Graphics.FromImage(m_emptyBitmap);

            graphics.Clear(m_colors.ClearColor);

            System.Windows.Media.Color colL = Util.ConvertColor(m_colors.AabbColor);
            colL.A = 128;
            m_mouseHLine.Stroke = new System.Windows.Media.SolidColorBrush(colL);
            m_mouseVLine.Stroke = new System.Windows.Media.SolidColorBrush(colL);

            System.Windows.Media.Color colT = Util.ConvertColor(m_colors.TextColor);
            colL.A = 128;
            m_mouseTxt.Foreground = new System.Windows.Media.SolidColorBrush(colT);

            UpdateItems(false);
        }
 private void VSColorTheme_ThemeChanged(ThemeChangedEventArgs e)
 {
     m_colors.Update();
     UpdateItems(false);
 }