Mercurial > pub > ImplabNet
annotate Implab.Diagnostics.Interactive/TextStyle.cs @ 171:0f70905b4652 ref20160224
Working on regular DFA
author | cin |
---|---|
date | Thu, 10 Mar 2016 01:19:33 +0300 |
parents | d10034588e38 |
children |
rev | line source |
---|---|
45 | 1 using System; |
2 using System.Collections.Generic; | |
3 using System.Drawing; | |
4 using System.Linq; | |
5 using System.Text; | |
6 using System.Threading.Tasks; | |
7 | |
8 namespace Implab.Diagnostics.Interactive { | |
9 class TextStyle { | |
10 public Color TextColor { | |
11 get; | |
12 set; | |
13 } | |
14 | |
15 public FontStyle FontStyle { | |
16 get; | |
17 set; | |
18 } | |
19 | |
20 public int PaddingLeft { | |
21 get; | |
22 set; | |
23 } | |
24 } | |
25 } |