CDocument 在 CView::OnInitialUpdate() 之前调用 UpdateAllViews(),这样好吗?
我有一个 MFC 现有项目。即使视图最初未更新,CDocument 类也可以更新视图。视图是CFormView类型的,我知道CFormView::OnInitialUpdate()中会调用DoDataExchange()。
这会引起问题吗?
I've got a MFC existing project. The CDocument class can update views even when view is not initially updated. Views are of CFormView type, and I know there will be DoDataExchange() called in CFormView::OnInitialUpdate().
Will this cause problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为,这取决于您如何在文档的视图类中实现
OnUpdate
。UpdateAllViews
只不过是对文档的所有视图的迭代,它为每个视图调用OnUpdate
。OnUpdate
的基本实现仅使视图矩形无效。如果您在OnUpdate
方法中访问 FormView 控件,结果可能取决于之前是否调用过OnInitialUpdate
。否则,在OnInitialUpdate
之前或之后调用UpdateAllViews
可能并不重要。I think, it depends on how you implemented
OnUpdate
in the view classes of your document.UpdateAllViews
is nothing more than an iteration over all views of your document which callsOnUpdate
for every view. The base implementation ofOnUpdate
only invalidates the view rectangle. If you access FormView controls in yourOnUpdate
methods the result might depend on whetherOnInitialUpdate
has been called before or not. Otherwise it probably doesn't matter if you callUpdateAllViews
before or afterOnInitialUpdate
.