Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个使用新 MFC 功能包的 MFC MDI 应用程序。我有一个启用了自动隐藏选项的 CDockablePane。我的 CView 驱动类需要花费大量时间来绘制。我面临的问题是,当窗格滑动(自动隐藏或自动出现)时,滑动中的每一步都会使 CView 重绘自身!这使得滑动需要花费大量时间并且应用程序显得非常沉重。有没有办法避免这些不必要的重绘并只绘制一次 CView 驱动的对象?
谢谢 :)
CDockablePane::m_bDisableAnimation = TRUE;
在您的大型机构造函数上。