示例#1
1
 public Texte(string message, Point position, Color couleur)
 {
     this.message = message;
     this.position = position;
     this.couleur = couleur;
     this.police = Fonte.Arial15;
 }
示例#2
0
 public Texte(string message, Point position, Color couleur, Fonte police)
 {
     this.message  = message;
     this.position = position;
     this.couleur  = couleur;
     this.police   = police;
 }
示例#3
0
 public Texte(string message, Point position, Color couleur)
 {
     this.message  = message;
     this.position = position;
     this.couleur  = couleur;
     this.police   = Fonte.Arial15;
 }
示例#4
0
 public Texte(string message, Point position)
 {
     this.message  = message;
     this.position = position;
     this.couleur  = Structure.Color.White;
     this.police   = Fonte.Arial15;
 }
示例#5
-8
 public Texte(string message, Point position)
 {
     this.message = message;
     this.position = position;
     this.couleur = Structure.Color.White;
     this.police = Fonte.Arial15;
 }
示例#6
-14
 public Texte(string message, Point position, Color couleur, Fonte police)
 {
     this.message = message;
     this.position = position;
     this.couleur = couleur;
     this.police = police;
 }