WinForm and WPF Form Submission

Forgive me if this is a stupid question. Can you tell me how WinForms are rendered (background engine) Also how WPF form is rendered. In simple terms, I want to know the rendering engine of WinForms and WPF Forms.

+2


a source to share


2 answers


For WPF there is an Overview of WPF Rendering or WPF Rendering Steps that says



  • Discard all children.
  • OpacityMask process.
  • Process opacity
  • BitmapEffect
  • Clip geometry
  • GuidelineSet
  • Transformation
+1


a source


Windows Forms renders its forms using GDI + , and WPF renders your Windows using DirectX .



+1


a source







All Articles