Ah, here's a good explanation of why the property isn't being serialized. It's by design, so you'll probably need to set any instance specific properties by hand in your form startup code.http://forum.strataframe.net/FindPost11004.aspx
Or, you could override the IsInheritedBrowseDialog() method and test on the System.Environment.StackTrace property
So, say, if the stack trace contains "ShouldSerializeBrowseResultsImageList" then you would return False, because you want the property to be serialized, otherwise, just return the base value.