| File: System\Windows\Forms\Design\ComponentDocumentDesigner.cs | Web Access |
| Project: src\winforms\src\System.Windows.Forms.Design\src\System.Windows.Forms.Design.csproj (System.Windows.Forms.Design) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Drawing.Design; namespace System.Windows.Forms.Design; /// <summary> /// Provides a root designer implementation for designing components. /// </summary> public class ComponentDocumentDesigner : ComponentDesigner, IRootDesigner, IToolboxUser, IOleDragClient, ITypeDescriptorFilterService { /// <summary> /// Gets the control for this designer. /// </summary> public Control Control => throw new NotImplementedException(SR.NotImplementedByDesign); /// <summary> /// Indicates whether the tray should auto arrange controls. /// </summary> public bool TrayAutoArrange { get => throw new NotImplementedException(SR.NotImplementedByDesign); set => throw new NotImplementedException(SR.NotImplementedByDesign); } /// <summary> /// Indicates whether the tray should contain a large icon. /// </summary> public bool TrayLargeIcon { get => throw new NotImplementedException(SR.NotImplementedByDesign); set => throw new NotImplementedException(SR.NotImplementedByDesign); } bool IOleDragClient.CanModifyComponents { get => throw new NotImplementedException(SR.NotImplementedByDesign); } bool IOleDragClient.AddComponent(IComponent component, string name, bool firstAdd) { throw new NotImplementedException(); } bool IOleDragClient.IsDropOk(IComponent component) { throw new NotImplementedException(); } Control IOleDragClient.GetDesignerControl() { throw new NotImplementedException(); } Control IOleDragClient.GetControlForComponent(object component) { throw new NotImplementedException(); } ViewTechnology[] IRootDesigner.SupportedTechnologies => throw new NotImplementedException(); /// <summary> /// Initializes the designer with the specified component. /// </summary> public override void Initialize(IComponent component) { throw new NotImplementedException(SR.NotImplementedByDesign); } /// <summary> /// The view for this document. The designer /// should assume that the view will be shown shortly /// after this call is made and make any necessary /// preparations. /// </summary> // We can live with this one. We have obsoleted some of the enum values. This method // only takes on argument, so it is pretty obvious what argument is bad. object IRootDesigner.GetView(ViewTechnology technology) { throw new NotImplementedException(SR.NotImplementedByDesign); } bool IToolboxUser.GetToolSupported(ToolboxItem tool) { throw new NotImplementedException(); } void IToolboxUser.ToolPicked(ToolboxItem tool) { throw new NotImplementedException(); } bool ITypeDescriptorFilterService.FilterAttributes(IComponent component, IDictionary attributes) { throw new NotImplementedException(); } bool ITypeDescriptorFilterService.FilterEvents(IComponent component, IDictionary events) { throw new NotImplementedException(); } bool ITypeDescriptorFilterService.FilterProperties(IComponent component, IDictionary properties) { throw new NotImplementedException(); } /// <summary> /// Disposes of the resources (other than memory) used by /// the <see cref="ComponentDocumentDesigner"/>. /// </summary> protected override void Dispose(bool disposing) { throw new NotImplementedException(SR.NotImplementedByDesign); } /// <summary> /// Gets a value indicating whether the specified tool is supported by this /// designer. /// </summary> [CLSCompliant(false)] protected virtual bool GetToolSupported(ToolboxItem tool) { throw new NotImplementedException(SR.NotImplementedByDesign); } /// <summary> /// Allows a /// designer to filter the set of properties the component /// it is designing will expose through the TypeDescriptor /// object. /// </summary> protected override void PreFilterProperties(IDictionary properties) { throw new NotImplementedException(SR.NotImplementedByDesign); } }