Properties of super class not showing
Hi there,
I'm trying to create my own little framework on top of a framework my company has bought. It'll inherit some of the classes we use most and change all settings we would normaly change 'by hand' to save some time and frustrations.
However, the properties of my own class do not show up within Visual Studio, while the properties of the base class do. How can I show both my class's properties and the ones of the base class?
Here's a code snippet of how I'm doing this, could this be wrong?
publicenumDF_Settings { DEFAULT, BASIC };
[
Category("Direct Framework"),Description("Description")]publicDF_Settings DF_Setting {set {
switch (value) {
caseDF_Settings.DEFAULT:
break;caseDF_Settings.BASIC:
break;
}
}
}
Best regards,
~Sph

