14 lines
640 B
C#
14 lines
640 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.ComponentModel.Design
|
|
{
|
|
/// <summary>Represents the method that will handle a <see cref="E:System.ComponentModel.Design.IComponentChangeService.ComponentChanged" /> event.</summary>
|
|
/// <param name="sender">The source of the event. </param>
|
|
/// <param name="e">A <see cref="T:System.ComponentModel.Design.ComponentChangedEventArgs" /> that contains the event data. </param>
|
|
// Token: 0x0200031B RID: 795
|
|
// (Invoke) Token: 0x06001C45 RID: 7237
|
|
[ComVisible(true)]
|
|
public delegate void ComponentChangedEventHandler(object sender, ComponentChangedEventArgs e);
|
|
}
|