PointMonitorEventArgs e如何判断是左键down move还是up?
Editor ed = Application.DocumentManager.MdiActiveDocument.Editor;public void MyTestOn()
{
ed.PointMonitor += new PointMonitorEventHandler(ed_PointMonitor);
}
public void MyTestOff()
{
ed.PointMonitor -= new PointMonitorEventHandler(ed_PointMonitor);
}
void ed_PointMonitor(object sender, PointMonitorEventArgs e)
{
}
PointMonitor 只是鼠标悬停事件而已,不能判断 editor有鼠标down move up事件吗?
页:
[1]