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.
我必须使用 Visual Studio (VB.NET) 创建一些复杂的 winform,我可以选择使用设计器或以编程方式进行。运行时性能有什么不同吗?
谢谢你。
我不认为有显着差异。也许在某些特殊情况下,设计师会分配一些不需要分配的属性,这可能会稍微降低性能,但不会显着降低。另一方面,设计人员在管理控件生命周期时增加了更多的稳定性。从我的角度和经验来看,手动或动态创建控件总是会引入编程开销,否则设计人员会这样做。只要没有强烈的手动要求,我建议使用设计器。