コード例 #1
1
ファイル: Texte.cs プロジェクト: gconfs-conferences/bdsp-2012
 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
ファイル: Texte.cs プロジェクト: gconfs-conferences/bdsp-2012
 public Texte(string message, Point position)
 {
     this.message = message;
     this.position = position;
     this.couleur = Structure.Color.White;
     this.police = Fonte.Arial15;
 }
コード例 #6
-14
ファイル: Texte.cs プロジェクト: gconfs-conferences/bdsp-2012
 public Texte(string message, Point position, Color couleur, Fonte police)
 {
     this.message = message;
     this.position = position;
     this.couleur = couleur;
     this.police = police;
 }