Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Winforms 不像 wpf 那样使用模型-视图-控制器范式。那它是怎么设计的呢?它使用另一种架构吗?我想更好地理解它。
它调用 InitializeComponent(); 在窗体上绘制所有控件。
InitializeComponent 的调用在表单的构造函数中是标准的。
InitializeComponent 方法中的代码是由您拖动到表单的内容自动生成的。控件的大小、位置、外观等都在此处设置。