コード例 #1
0
 public void HostInvokeMouseDown(int xpos, int ypos, UIMouseButtons button)
 {
     this._mousedown_X = xpos;
     this._mousedown_Y = ypos;
     _visualLine.SetCharIndexFromPos(xpos, ypos);
     _isMouseDown = true;
     UpdateOutput();
 }
コード例 #2
0
 public override void HostInvokeMouseDown(int xpos, int ypos, UIMouseButtons button)
 {
     _visualLine.SetCharIndexFromPos(xpos, ypos);
     base.HostInvokeMouseDown(xpos, ypos, button);
 }