How can I avoid flicker in a WPF fullscreen app?

后端 未结 8 780
春和景丽
春和景丽 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: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.

提交回复
热议问题