Provides a grid on which the user can edit data and add new business objects directly.
IMPORTANT: This grid does not provide any buttons or menus for users to save the changes they have made, and all changes will be lost if the form is closed and changes are not saved programmatically. Either carry out a dirty check when the parent form is closed and take appropriate save action using SaveChanges(), or use an IEditableGridControl, which provides Save and Cancel buttons.
Inheritance: GridBaseWin, IEditableGrid
 protected override IEditableGrid CreateEditableGrid()
 {
     EditableGridWin editableGridWin = new EditableGridWin();
     System.Windows.Forms.Form frm = new System.Windows.Forms.Form();
     frm.Controls.Add(editableGridWin);
     DisposeOnTearDown(frm);
     return GetControlledLifetimeFor(editableGridWin);
 }