示例#1
0
 public Token() : base(Key)
 {
     Instance = this;
     //ForegroundColor = Color.FromRgb(214,157,133);
     //ForegroundColor = Color.FromRgb(255, 143, 32);
     //ForegroundColor = Color.FromRgb(255, 148, 40);
     ForegroundColor = Color.FromRgb(255, 150, 45);
 }
示例#2
0
 public Field() : base(Key)
 {
     Instance = this;
     //IsItalic = true;
     //ForegroundColor = Color.FromRgb(205, 237, 254);
     //ForegroundColor = Color.FromRgb(238, 213, 187);
     ForegroundColor = Color.FromRgb(224, 243, 255);
 }
示例#3
0
 public Interface() : base(Key)
 {
     Instance        = this;
     ForegroundColor = Color.FromArgb(255, 186, 245, 222);
 }
示例#4
0
 public Event() : base(Key)
 {
     Instance        = this;
     ForegroundColor = Color.FromRgb(250, 152, 225);
     IsBold          = false;
 }
示例#5
0
 public Punctuation() : base(Key)
 {
     Instance        = this;
     ForegroundColor = Color.FromRgb(255, 128, 128);
 }
示例#6
0
 public Attribute() : base(Key)
 {
     Instance = this;
     IsItalic = true;
     //ForegroundColor = Color.FromRgb(136, 202, 244);
 }
示例#7
0
 public Identifier() : this(Key) {
     Instance = this;
 }
示例#8
0
 public Extension() : base(Key)
 {
     Instance        = this;
     IsItalic        = true;
     ForegroundColor = Color.FromArgb(255, 148, 255, 255);
 }
示例#9
0
 public Operator() : base(Key)
 {
     Instance        = this;
     ForegroundColor = Color.FromRgb(255, 255, 128);
 }
示例#10
0
 public Enum() : this(Key) {
     Instance = this;
 }
示例#11
0
 public String() : this(Key) {
     Instance = this;
 }
示例#12
0
 public Dynamic() : base(Key)
 {
     Instance        = this;
     ForegroundColor = Color.FromArgb(255, 180, 180, 180);
 }
示例#13
0
 public Generic() : base(Key)
 {
     Instance        = this;
     ForegroundColor = Color.FromArgb(255, 0, 255, 255);
 }
示例#14
0
 public Delegate() : base(Key)
 {
     Instance        = this;
     ForegroundColor = Color.FromRgb(173, 216, 230);
 }
示例#15
0
 public Number() : base(Key)
 {
     Instance        = this;
     ForegroundColor = Color.FromRgb(255, 205, 34);
 }
示例#16
0
 public SingleQuotes() : base(Key)
 {
     Instance        = this;
     ForegroundColor = Color.FromRgb(255, 198, 140);
 }
示例#17
0
 public Virtual() : base(Key)
 {
     Instance = this;
     IsItalic = true;
 }
示例#18
0
 public Interpolated() : base(Key)
 {
     Instance        = this;
     ForegroundColor = Color.FromArgb(255, 255, 180, 120);
 }
示例#19
0
 public UserDefinedOperator() : base(Key)
 {
     Instance        = this;
     ForegroundColor = Color.FromArgb(255, 0, 240, 240);
 }
示例#20
0
 public Variable() : this(Key) {
     Instance = this;
 }
示例#21
0
 public Namespace() : base(Key)
 {
     Instance        = this;
     ForegroundColor = Color.FromRgb(135, 150, 194);
 }
示例#22
0
 public Param() : this(Key) {
     Instance = this;
 }
示例#23
0
 public Constant() : base(Key)
 {
     Instance        = this;
     IsBold          = true;
     ForegroundColor = Color.FromRgb(198, 176, 206);
 }
示例#24
0
 public Method() : this(Key) {
     Instance = this;
 }
示例#25
0
 public Property() : this(Key) {
     Instance = this;
 }
示例#26
0
 public Constructor() : base(Key)
 {
     Instance = this;
     IsBold   = true;
 }
示例#27
0
 public InterfaceImplementation() : base(Key)
 {
     Instance     = this;
     IsUnderlined = true;
 }
示例#28
0
 public Static() : base(Key)
 {
     Instance = this;
     IsBold   = true;
 }
示例#29
0
 public Label() : base(Key)
 {
     Instance = this;
     IsBold   = true;
 }
示例#30
0
 public Structure() : base(Key)
 {
     Instance        = this;
     ForegroundColor = Color.FromArgb(255, 157, 208, 225);
 }