//--------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; namespace ExtendedGrid.Microsoft.Windows.Controls { /// /// Delegate used for the InitializingNewItem event on DataGrid. /// /// The DataGrid that raised the event. /// The event arguments where callbacks can access the new item. public delegate void InitializingNewItemEventHandler(object sender, InitializingNewItemEventArgs e); }