Hi,
I have one of the property type Collection,by default collectioneditor template is applying but I want to change EditorStyle to none instead of modal.When I try to do this
[Telerik.Windows.Controls.Data.PropertyGrid.Editor(typeof(Telerik.Windows.Controls.Data.PropertyGrid.CollectionEditor),Telerik.Windows.Controls.Data.PropertyGrid.EditorStyle.None)]
public ObjectCollection Properties
{
get
{
if (m_PropertiesSet == false)
{
m_Properties.AddRange(Properties);
}
return m_Properties;
}
}
The Collection window is coming as empty.How to achieve this,i just want to change the editor style.?
Regards,
Nagasree.