Ejemplo n.º 1
0
 public FontInfo(FontFamily fam, double sz, FontStyle style, FontStretch strc, FontWeight weight, SolidColorBrush c, SolidColorBrush background)
 {
     this.Family     = fam;
     this.Size       = sz;
     this.Style      = style;
     this.Stretch    = strc;
     this.Weight     = weight;
     this.BrushColor = c;
     this.Background = AvailableColors.GetFontColor(background);
 }
Ejemplo n.º 2
0
 public static FontColor GetFontColor(Color c)
 {
     return(AvailableColors.GetFontColor(new SolidColorBrush(c)));
 }
Ejemplo n.º 3
0
 public ColorPickerViewModel()
 {
     this.selectedFontColor = AvailableColors.GetFontColor(Colors.Black);
     this.roFontColors      = new ReadOnlyCollection <FontColor>(new AvailableColors());
 }