You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@ -0,0 +1,42 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="IRootDesigner.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>
|
||||
/// Defines the root designer. A root designer is the designer that sits
|
||||
/// at the top, or root, of the object hierarchy. The root designer's job
|
||||
/// is to provide the design-time user interface for the design surface.
|
||||
/// It does this through the View property.
|
||||
/// </devdoc>
|
||||
[System.Runtime.InteropServices.ComVisible(true)]
|
||||
public interface IRootDesigner : IDesigner {
|
||||
|
||||
/// <devdoc>
|
||||
/// The list of technologies that this designer can support
|
||||
/// for its view. Examples of different technologies are
|
||||
/// Windows Forms and Web Forms. Other object models can be
|
||||
/// supported at design time, but they most be able to
|
||||
/// provide a view in one of the supported technologies.
|
||||
/// </devdoc>
|
||||
ViewTechnology[] SupportedTechnologies { get; }
|
||||
|
||||
/// <devdoc>
|
||||
/// The user interface to present to the user. The returning
|
||||
/// data type is an object because there can be a variety
|
||||
/// of different user interface technologies. Development
|
||||
/// environments typically support more than one technology.
|
||||
/// </devdoc>
|
||||
object GetView(ViewTechnology technology);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user