문제

What's the best way to list all the controls that may be on a CDialog based form? The only method I've seen so far is EnumChildWindows() but this involves call backs. Is there no faster way to do this?

도움이 되었습니까?

해결책

Callback will hardly affect the performance. What can affect the performance is your code within the callback. I think you can use EnumChildWindows without any issues.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top