日期:2014-05-18 浏览次数:21089 次
void Click(object sender, EventArgs e)
{
MouseEventArgs me = (MouseEventArgs)e;
MessageBox.Show(me.Location.ToString());
}
(sender as Control).Parent.PointToClient((sender as Control).PointToScreen(me.Location));