示例#1
0
 public MyText(MyText s, int numeric)
     : base(s, numeric)
 {
     text   = s.text;
     coord  = s.coord;
     myFont = s.myFont;
     font   = myFont.toFont();
 }
示例#2
0
 public MyText(String _text, Point _coord, MyPaintSettings settings, int _name)
     : base(_name, settings)
 {
     text   = _text;
     coord  = _coord;
     myFont = new MyFont(settings.font);
     font   = myFont.toFont();
 }
示例#3
0
 public override void updateInfoAfterLoadFileXML()
 {
     base.updateInfoAfterLoadFileXML();
     font = myFont.toFont();
 }