Esempio n. 1
0
 public GridLinesEntry(FontAndColorDefaultsResultsGrid parent) : base(parent)
 {
     Name              = EntryNames.GridLines;
     LocalizedName     = "Grid lines";
     Usage             = ColorUsage.Foreground;
     DefaultBackground = new[] { new AutoColor() };
     DefaultForeground = new[] { new RgbColor(0x80, 0x80, 0x80) };
 }
Esempio n. 2
0
 public FailureMarkerEntry(FontAndColorDefaultsResultsGrid parent) : base(parent)
 {
     Name              = EntryNames.FailureMarker;
     LocalizedName     = "Failure marker";
     Usage             = ColorUsage.Foreground;
     DefaultBackground = new[] { new AutoColor() };
     DefaultForeground = new[] { new RgbColor(0xFF, 0x40, 0x40) };
 }
Esempio n. 3
0
 public InactiveSelectedCellEntry(FontAndColorDefaultsResultsGrid parent) : base(parent)
 {
     Name              = EntryNames.InactiveSelectedCell;
     LocalizedName     = "Inactive selected cell";
     Usage             = ColorUsage.Background | ColorUsage.Foreground;
     DefaultBackground = new[] { new RgbColor(0xC0, 0xC0, 0xC0) };
     DefaultForeground = new[] { new RgbColor(0x00, 0x00, 0x00) };
 }
Esempio n. 4
0
 public HeaderCellEntry(FontAndColorDefaultsResultsGrid parent) : base(parent)
 {
     Name              = EntryNames.HeaderCell;
     LocalizedName     = "Header cell";
     Usage             = ColorUsage.Background | ColorUsage.Foreground;
     DefaultBackground = new[] { new RgbColor(0xE0, 0xE0, 0xE0) };
     DefaultForeground = new[] { new RgbColor(0x00, 0x00, 0x00) };
 }
Esempio n. 5
0
 public NormalCellEntry(FontAndColorDefaultsResultsGrid parent) : base(parent)
 {
     Name              = EntryNames.NormalCell;
     LocalizedName     = "Normal cell";
     Usage             = ColorUsage.Background | ColorUsage.Foreground;
     DefaultBackground = new[] { new RgbColor(0xFF, 0xFF, 0xFF) };
     DefaultForeground = new[] { new RgbColor(0x00, 0x00, 0x00) };
 }