private void SyncFontColor()
        {
            int colorIdx = AvailableColors.GetFontColorIndex(this.Font.Color);

            this.colorFontChooser.colorPicker.superCombo.SelectedIndex = colorIdx;
            this.colorFontChooser.txtSampleText.Foreground             = this.Font.Color.Brush;
            this.colorFontChooser.colorPicker.superCombo.BringIntoView();
        }
Exemplo n.º 2
0
        public static int GetFontColorIndex(FontColor c)
        {
            AvailableColors brushList  = new AvailableColors();
            int             idx        = 0;
            SolidColorBrush colorBrush = c.Brush;

            foreach (FontColor brush in brushList)
            {
                if (brush.Brush.Color.Equals(colorBrush.Color))
                {
                    break;
                }
                idx++;
            }
            return(idx);
        }
Exemplo n.º 3
0
 public static FontColor GetFontColor(Color c)
 {
     return(AvailableColors.GetFontColor(new SolidColorBrush(c)));
 }
 public ColorPickerViewModel()
 {
     this.selectedFontColor = AvailableColors.GetFontColor(Colors.Black);
     this.roFontColors      = new ReadOnlyCollection <FontColor>(new AvailableColors());
 }