문제

Winforms doesn't use the Model–View–Controller paradigm like wpf. How is it designed then? Does it use another architecture? I want to understand it better.

도움이 되었습니까?

해결책

It calls the InitializeComponent(); to draw all controls on the form.

The call for the InitializeComponent is standard in the form's constructor.

The code within the InitializeComponent method is auto generated by what you are dragging to the form. The size, location, looks, etc of a control gets set there.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top