This commit is contained in:
2008-11-19 13:56:30 +00:00
parent dd571890fc
commit 155000586d
8 changed files with 203 additions and 56 deletions

View File

@@ -8,16 +8,8 @@ namespace VEPROMS.CSLA.Library
{
[Serializable]
[TypeConverter(typeof(ExpandableObjectConverter))]
public class SectionConfig : DynamicTypeDescriptor, INotifyPropertyChanged
public class SectionConfig : ConfigDynamicTypeDescriptor, INotifyPropertyChanged
{
#region Events
public event PropertyChangedEventHandler PropertyChanged;
private void OnPropertyChanged(String info)
{
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(info));
}
#endregion
#region DynamicTypeDescriptor
internal override bool IsReadOnly
{