在 MFC 中通过鼠标单击而不是按住拖动操作进行选择
我对 MFC 还很陌生。我目前正在使用 MFC 的 CrectTracker 类绘制一个选择矩形,以在基于 MFC 的应用程序中选择图形上的区域。但是,我想使用鼠标单击而不是按下 L 按钮并拖动和释放操作来进行选择。
有人可以给我指出一个示例,其中 crctracker 类可用于通过鼠标单击来选择区域,第一次单击开始选择,第二次单击结束?或者我是否必须为此实现自己的 OnLButtonUp 操作?
谢谢。
I am quite new to MFC. I am currently using the CrectTracker class of MFC to draw a selection rectangle to select an area on a graphic in MFC based application. However, I would like to do the selection using mouse clicks instead of L button press and drag and release action.
Can somebody point me to an example where the crectracker class can be used to select an area using mouse clicks, first click to start the selection and second to end? Or do I have to implement my own OnLButtonUp actions for this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要实现 MouseMove 事件。
http://msdn.microsoft.com/en -us/library/3158baat%28v=vs.80%29.aspx
此函数为您提供 2 个参数。
Flag : 在这里您可以检查鼠标左键是否被单击
Point : 鼠标光标的位置。
You need to implement the MouseMove event.
http://msdn.microsoft.com/en-us/library/3158baat%28v=vs.80%29.aspx
This functions gives you 2 Parameters.
Flag : Here you can check the Left Mouse Button is Clicked
Point : Position of the Mouse cursor.