Esempio n. 1
0
 public Status()
 {
     Font      = new StrFont();
     NewLine   = false;
     WordWrap  = true;
     Alignment = ContentAlignment.TopLeft;
     Brush     = new StrBrush();
 }
Esempio n. 2
0
 public Status([NotNull] Status oldStatus)
 {
     Font      = new StrFont(oldStatus.Font);
     NewLine   = oldStatus.NewLine;
     WordWrap  = oldStatus.WordWrap;
     Alignment = oldStatus.Alignment;
     Brush     = new StrBrush(oldStatus.Brush);
 }
Esempio n. 3
0
 public StrBrush([NotNull] StrBrush oldBrush)
 {
     Color = oldBrush.Color;
 }