14 lines
752 B
C#
14 lines
752 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.ComponentModel.Design
|
|
{
|
|
/// <summary>Represents the method that handles the <see cref="E:System.ComponentModel.Design.IDesignerHost.TransactionClosed" /> and <see cref="E:System.ComponentModel.Design.IDesignerHost.TransactionClosing" /> events of a designer.</summary>
|
|
/// <param name="sender">The source of the event. </param>
|
|
/// <param name="e">A <see cref="T:System.ComponentModel.Design.DesignerTransactionCloseEventArgs" /> that contains the event data. </param>
|
|
// Token: 0x0200031F RID: 799
|
|
// (Invoke) Token: 0x06001C55 RID: 7253
|
|
[ComVisible(true)]
|
|
public delegate void DesignerTransactionCloseEventHandler(object sender, DesignerTransactionCloseEventArgs e);
|
|
}
|