在C++中可以在OnMouseMove事件中如下计算出:
void CDicomViewerDemoView::OnMouseMove(UINT nFlags, CPoint point)

           m_nImgcenter = m_nImgcenter + (point.x-m_StartPoint.x)*(int)m_dCenter;
  m_nImgwidth = m_nImgwidth + (point.y-m_StartPoint.y)*m_dWidth;} 我想请问在C#中应该如何来计算呢?同样是在MouseMove事件中,这个鼠标移动的步长应该如何来计算呢?
 void picBox_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e)

 }