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

@@ -7,14 +7,8 @@ namespace VEPROMS.CSLA.Library
{
[Serializable]
[TypeConverter(typeof(ExpandableObjectConverter))]
public class UserConfig:INotifyPropertyChanged
public class UserConfig : ConfigDynamicTypeDescriptor, INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
private void OnPropertyChanged(String info)
{
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(info));
}
private XMLProperties _Xp;
private XMLProperties Xp
{