djliu221 发表于 2011-1-30 13:15:03

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)
      {
      }

雪山飞狐_lzh 发表于 2011-1-30 14:07:48

PointMonitor 只是鼠标悬停事件而已,不能判断

djliu221 发表于 2011-1-30 14:54:51

editor有鼠标down move up事件吗?
页: [1]
查看完整版本: PointMonitorEventArgs e如何判断是左键down move还是up?