//--------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System; namespace ExtendedGrid.Microsoft.Windows.Controls { /// /// Provides access to the new item during the InitializingNewItem event. /// public class InitializingNewItemEventArgs : EventArgs { /// /// Instantiates a new instance of this class. /// public InitializingNewItemEventArgs(object newItem) { _newItem = newItem; } /// /// The new item. /// public object NewItem { get { return _newItem; } } private object _newItem; } }