What's the best way to reuse a cell editor?I have a usercontrol (with heavy memory use, and slow loading) that I want to use as an editor, but I only want to use one instance of this usercontrol. How can I reuse this editor for every cell in the same column?
I think specifying field.Settings.EditorType = typeof(MyCustomeEditor); will use only one instance of it.
If it doesnot then may be you can implement singelton pattern for your custom editor so that only one instance is created!