What is WPF for the WinForms programmer?

后端 未结 8 535
余生分开走
余生分开走 2021-02-04 11:42

What is WPF to the WinForms programmer?

WinForms distilled is adding controls to forms, and adding event handlers. This is simple and easy and allows you to make functio

8条回答
  •  生来不讨喜
    2021-02-04 12:14

    The XAML part of a WPF application is vaguely a replacement of the WinForm.Designer.cs file in WinForms.

    The WPF model has a better design for the UI and individual controls, fixing a lot of the short-comings of WinForms and guides you to (hopefully) a better Seperation of Concern design.

提交回复
热议问题