Sic.Framework/MECF.Framework.UI.Client/DataGridTransform/DataGrid/Microsoft/Windows/Controls/InitializingNewItemEventHan...

18 lines
675 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
//---------------------------------------------------------------------------
//
// Copyright (C) Microsoft Corporation. All rights reserved.
//
//---------------------------------------------------------------------------
using System;
namespace ExtendedGrid.Microsoft.Windows.Controls
{
/// <summary>
/// Delegate used for the InitializingNewItem event on DataGrid.
/// </summary>
/// <param name="sender">The DataGrid that raised the event.</param>
/// <param name="e">The event arguments where callbacks can access the new item.</param>
public delegate void InitializingNewItemEventHandler(object sender, InitializingNewItemEventArgs e);
}