Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过允许用户选择一个矩形区域来获得 PictureBox 中的一部分图片(类似于它可以在 Photoshop 中使用选择工具完成的方式)。
我怎么能做到这一点?
您必须根据点击和拖动的位置绘制一个矩形或线条。您的起点是鼠标 x, y,然后您会从鼠标释放 x, y 获得最后一个点。
捕捉图片框上的鼠标事件以定义您的选择矩形,并用于Graphics.DrawRectangle在图片框的绘制事件中绘制您的选择矩形。
Graphics.DrawRectangle