我想用鼠标在 DrawingArea 中绘制图像。我可以知道 DrawingArea 中的当前鼠标坐标,但我怎么知道按下的鼠标按钮是什么?我当前的代码如下所示:
protected void OnPaintedPicture1DrawingareaMotionNotifyEvent (object o, MotionNotifyEventArgs args)
{
EventMotion currentEventMotion = (args.Args[0] as EventMotion);
matchingPercentageForPicture1AndSample1_entry.Text+=String.Format("x='{0}'; y='{1}';\t", currentEventMotion.X, currentEventMotion.Y);
}