I've wrapped a drawing area in an event box so that I can catch mouse clicks with this function:
protected virtual void OnEventbox1ButtonPressEvent (object o, Gtk.ButtonPressEventArgs args)
{
Console.WriteLine("Clicked!");
}
How can I find out where the mouse clicked?