1

I have a WPF application which somethimes behaves strange on different machines. This is the main screen of the application:

enter image description here

On some machines it looks like this on startup and you have to find the minimize and restore it to get fully rendered which is really annoying.

enter image description here

Any suggestions how to troubleshoot this problem or a possible fix?

MartinZPetrov
  • 316
  • 5
  • 20
  • Do you have the same directx version on both computer? Does the first screen comes from TeamViewer too? – pix Sep 21 '16 at 11:30
  • Did you check that the graphic driver is up-to-date ? – Quentin Roger Sep 21 '16 at 11:30
  • 1
    Forget about my first comment on Directx. I think our probleme should be close to this thread: http://stackoverflow.com/questions/1244010/wpf-not-rendering-on-remote-desktop – pix Sep 21 '16 at 11:34

1 Answers1

-1

Disabling hardware accelleration by creating a DWORD registry value at

HKEY_CURRENT_USER\SOFTWARE\Microsoft\Avalon.Graphics\DisableHWAcceleration

and then setting it to 1.

There seems to be confusion between graphics card drivers and OS updates.

DDAM-J
  • 1