0

Does anyone know is there any opportunity to set render mode for WinForms ? I mean setting software rendering mode for specific window or whole application, I am looking the same like describing here Software rendering mode - WPF but for WinForms, thank you.

Community
  • 1
  • 1
user1722669
  • 488
  • 2
  • 6
  • 22

1 Answers1

1

Software rendering is what WinForms do already, for all windows and controls, using GDI and GDI+, you can get started here.

If you want hardware accelerated graphics, you need to use some graphics library, like OpenGL or DirectX.

WPF uses DirectX modules to render, because of this you have such option.

LoRdPMN
  • 512
  • 1
  • 5
  • 18