How does the designer decide what properties to persist on a given component- February 3, 2004 Any component has a bunch of properties on it. For example, the WinForms Button control has properties like BackColor, ForeColor, Text, Name, BackgroundImage and so on. When you place a Button on the Form in the VisualStudio designer and look at the generated code, you will find only a subset of the properties are persisted in code. Typically, these are the properties for which you explicitly set a value. What is the mechanism the designer uses to achieve this behavior First of all, the...http://blogs.msdn.com/rprabhu/archive/2004/02/03/66560.aspx |