Xamarin Public Jenkins (auto-signing) e79aa3c0ed Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
2016-08-03 10:59:49 +00:00

49 lines
1.6 KiB
C#

//------------------------------------------------------------------------------
// <copyright file="IDesigner.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*
*/
namespace System.ComponentModel.Design {
using System.Diagnostics;
using System;
using System.ComponentModel;
using Microsoft.Win32;
/// <devdoc>
/// <para> Provides the basic framework for building a custom designer.
/// This interface stores the verbs available to the designer, as well as basic
/// services for the designer.</para>
/// </devdoc>
[System.Runtime.InteropServices.ComVisible(true)]
public interface IDesigner : IDisposable {
/// <devdoc>
/// <para>Gets or sets the base component this designer is designing.</para>
/// </devdoc>
IComponent Component {get;}
/// <devdoc>
/// <para> Gets or sets the design-time verbs supported by the designer.</para>
/// </devdoc>
DesignerVerbCollection Verbs {get;}
/// <devdoc>
/// <para>
/// Performs the default action for this designer.
/// </para>
/// </devdoc>
void DoDefaultAction();
/// <devdoc>
/// <para>
/// Initializes the designer with the given component.
/// </para>
/// </devdoc>
void Initialize(IComponent component);
}
}