Mirroring one window to another

前端 未结 1 917
耶瑟儿~
耶瑟儿~ 2021-01-24 22:28

I have an MFC window object with all the information about it. I\'m looking for a way to mirror it to another window so that both windows look identical. I\'ve heard it\'s possi

相关标签:
1条回答
  • 2021-01-24 23:01

    The solution was that I used DWM thumbnailing for the source window:

    hr = DwmRegisterThumbnail();
    hr = DwmUpdateThumbnailProperties();
    

    as @raymond-chen suggested.

    0 讨论(0)
提交回复
热议问题