How can I avoid flicker in a WPF fullscreen app?

后端 未结 8 826
春和景丽
春和景丽 2020-12-31 11:41

I have a WPF application that is a fullscreen kiosk app. It\'s actually a pretty complicated app at this point, but here\'s some code that shows the basic idea. Essentiall

相关标签:
8条回答
  • 2020-12-31 12:25

    Seeing as how WPF uses DirectX and the Graphics Processor to offload processing of screen elements, are the computer's DirectX and drivers up to date?

    Cory

    0 讨论(0)
  • 2020-12-31 12:34

    I'm curious as to why you are using multiple windows for the same application in a Kiosk. You could easily put all of the controls on the same "Window" and simply change visibility on Panels to display different "screens". This would certainly prevent the desktop from ever being shown, and would allow you to do neat things like fade transitions or sliding animations, etc.

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