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.
列出可能在基于 CDialog 的窗体上的所有控件的最佳方法是什么?到目前为止我看到的唯一方法是EnumChildWindows(),但这涉及回调。有没有更快的方法来做到这一点?
EnumChildWindows()
回调几乎不会影响性能。影响性能的是回调中的代码。我认为您可以毫无问题地使用 EnumChildWindows。