コード例 #1
0
ファイル: GuiForm.cs プロジェクト: Semigroup/SageSystem
 public LayerString addLayerString()
 {
     LayerString l = new LayerString(g);
     cs.add(l);
     drawAgain();
     return l;
 }
コード例 #2
0
ファイル: GuiString.cs プロジェクト: Semigroup/SageSystem
 public HyperString(IDrawable text, IDrawable hyperText, LayerString layer)
 {
     this.text = text;
     this.hyperText = hyperText;
     this.layer = layer;
 }