コード例 #1
0
 public void MakeCloseTarget(AControl toClose)
 {
     m_closeTarget     = toClose;
     HandlesMouseInput = true;
     OnMouseClick     += onCloseTargetClick;
 }
コード例 #2
0
ファイル: Control.cs プロジェクト: Crwth/UltimaXNA
 public void MakeCloseTarget(Control toClose)
 {
     _closeTarget = toClose;
     this.HandlesMouseInput = true;
     this.OnMouseClick += onCloseTargetClick;
 }