本文介绍了我可以在mfc图片控件中使用鼠标事件吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在图片控件上裁剪图像.
谢谢.

I would like to crop the image which on picture control.
Thanks in advanced.

推荐答案

  CRgn clipregion;
clipregion.CreateRectRgn( left, top,  right, bottom ); // Prepare clip region.
pPictureControl->SetWindowRgn(clipregion, TRUE);


这篇关于我可以在mfc图片控件中使用鼠标事件吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 10:19