示例#1
0
 private void DoMouseHandle()
 {
     if (isMouseDownIndex)
     {
         MyMouseEventHandle.DoLeftMouseDownWithPosition(ref posList);
         return;
     }
     if (isMouseWheelDownIndex)
     {
         MyMouseEventHandle.DoWheelDownMove();
         return;
     }
     MyMouseEventHandle.DoLeftMouseSingleClickWithPostions(ref posList);
 }