tags:

views:

42

answers:

1

I can build a winform with controls without ever using ISupportInitialize why do the designer need it ?

+1  A: 

Check out the msdn article.

FTA:

ISupportInitialize allows controls to optimize multiple property assignments. As a result, you can initialize co-dependent properties or batch set multiple properties at design time.

Joseph