Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
This is intentional. The properties of an inherited BrowseDialog are not serialized (stored in the designer.cs file). The reason for this is that generally, you want to set the properties within the inherited dialog's designer, so you don't have to set them on every form you drop the inherited dialog on. However, if we did not disable the serialization, when you drop an inherited browse dialog on a form, everything would be double serialized (in the dialog's designer and on the form's designer), so the search fields and results all get "doubled up" (you have 2 of every search field and 2 of every results column.
|