CDocument 在 CView::OnInitialUpdate() 之前调用 UpdateAllViews(),这样好吗?

发布于 2024-10-19 16:01:30 字数 135 浏览 4 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只为守护你 2024-10-26 16:01:30

我认为,这取决于您如何在文档的视图类中实现 OnUpdateUpdateAllViews 只不过是对文档的所有视图的迭代,它为每个视图调用 OnUpdateOnUpdate 的基本实现仅使视图矩形无效。如果您在 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 calls OnUpdate for every view. The base implementation of OnUpdate only invalidates the view rectangle. If you access FormView controls in your OnUpdate methods the result might depend on whether OnInitialUpdate has been called before or not. Otherwise it probably doesn't matter if you call UpdateAllViews before or after OnInitialUpdate.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文