
Hi,
I have property item which behaves strange when the property grids 'IsReadOnly' property is set to false.
The property item is defined as:The problem is that the value of the property item is set to empty (""), when the IsReadOnly property is changed to false.
Is this a bug ???
I have property item which behaves strange when the property grids 'IsReadOnly' property is set to false.
The property item is defined as:
PropertyGridPropertyItem propertyItemPatientSex = new PropertyGridPropertyItem();
propertyItemPatientSex.ValueName = "Sex";
propertyItemPatientSex.Value = "Male";
propertyItemPatientSex.IsLimitedToStandardValues = true;
propertyItemPatientSex.StandardValues = new string[] { "Male","Female"};
Is this a bug ???