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); }
public static FontColor GetFontColor(Color c) { return(AvailableColors.GetFontColor(new SolidColorBrush(c))); }
public static FontColor GetFontColor(SolidColorBrush b) { AvailableColors brushList = new AvailableColors(); return(brushList.GetFontColorByBrush(b)); }
public static FontColor GetFontColor(string name) { AvailableColors brushList = new AvailableColors(); return(brushList.GetFontColorByName(name)); }
public ColorComboBox() { this.selectedFontColor = AvailableColors.GetFontColor(Colors.Black); this.fontColorList = new ReadOnlyCollection <FontColor>(new AvailableColors()); }