示例#1
0
 public TextFormatting(Font font, Color color, TextOutline outline, TextShadow shadow)
 {
     Font    = font;
     Color   = color;
     Outline = outline;
     Shadow  = shadow;
 }
示例#2
0
 protected bool Equals(TextOutline other)
 {
     return(Width == other.Width && Color.Equals(other.Color));
 }