S
sb
Consider the following example code:
....
namespace MyNamespace
{
public class MyClass
{
private int m_Count;
[TypeConverter(typeof(ExpandableObjectConverter))]
public int Count
{
get { return m_Count; }
set { m_Count= value; }
}
// ....etc...
}
}
When setting a PropertyGrid's SelectedObject to an instance of this class,
it shows "MyNamespace.MyClass"...can I change that so that it displays
something more user friendly? It just looks tacky and I'd like to fix it
Any tips would be appreciated!
TIA
-sb
....
namespace MyNamespace
{
public class MyClass
{
private int m_Count;
[TypeConverter(typeof(ExpandableObjectConverter))]
public int Count
{
get { return m_Count; }
set { m_Count= value; }
}
// ....etc...
}
}
When setting a PropertyGrid's SelectedObject to an instance of this class,
it shows "MyNamespace.MyClass"...can I change that so that it displays
something more user friendly? It just looks tacky and I'd like to fix it
Any tips would be appreciated!
TIA
-sb