33 lines
1.3 KiB
C#
33 lines
1.3 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.ComponentModel.Design
|
|
{
|
|
/// <summary>Provides the basic framework for building a custom designer.</summary>
|
|
// Token: 0x02000047 RID: 71
|
|
[ComVisible(true)]
|
|
public interface IDesigner : IDisposable
|
|
{
|
|
/// <summary>Gets the base component that this designer is designing.</summary>
|
|
/// <returns>An <see cref="T:System.ComponentModel.IComponent" /> indicating the base component that this designer is designing.</returns>
|
|
// Token: 0x170000D0 RID: 208
|
|
// (get) Token: 0x060002E6 RID: 742
|
|
IComponent Component { get; }
|
|
|
|
/// <summary>Gets a collection of the design-time verbs supported by the designer.</summary>
|
|
/// <returns>A <see cref="T:System.ComponentModel.Design.DesignerVerbCollection" /> that contains the verbs supported by the designer, or null if the component has no verbs.</returns>
|
|
// Token: 0x170000D1 RID: 209
|
|
// (get) Token: 0x060002E7 RID: 743
|
|
DesignerVerbCollection Verbs { get; }
|
|
|
|
/// <summary>Performs the default action for this designer.</summary>
|
|
// Token: 0x060002E8 RID: 744
|
|
void DoDefaultAction();
|
|
|
|
/// <summary>Initializes the designer with the specified component.</summary>
|
|
/// <param name="component">The component to associate with this designer. </param>
|
|
// Token: 0x060002E9 RID: 745
|
|
void Initialize(IComponent component);
|
|
}
|
|
}
|