ArrayEditor 类

定义

提供用于在设计时编辑数组的用户界面。

public ref class ArrayEditor : System::ComponentModel::Design::CollectionEditor
public class ArrayEditor : System.ComponentModel.Design.CollectionEditor
type ArrayEditor = class
    inherit CollectionEditor
Public Class ArrayEditor
Inherits CollectionEditor
继承

示例

下面的代码示例演示如何将 应用于 System.ComponentModel.EditorAttribute 属性。

public:
   property array<Object^>^ componentArray 
   {
      [EditorAttribute(System::ComponentModel::Design::ArrayEditor::typeid,
         System::Drawing::Design::UITypeEditor::typeid)]
      array<Object^>^ get()
      {
         return compArray;
      }
      void set( array<Object^>^ value )
      {
         compArray = value;
      }
   }
private:
   array<Object^>^compArray;
[EditorAttribute(typeof(System.ComponentModel.Design.ArrayEditor), typeof(System.Drawing.Design.UITypeEditor))]
public object[] componentArray
{
    get
    {
        return compArray;
    }
    set
    {
        compArray = value;
    }
}
private object[] compArray;
<EditorAttribute(GetType(ArrayEditor), GetType(System.Drawing.Design.UITypeEditor))> _
Public Property componentArray() As Object()
    Get
        Return compArray
    End Get
    Set(ByVal Value As Object())
        compArray = Value
    End Set
End Property
Private compArray() As Object

注解

此编辑器可用于在设计时环境中编辑数组。

构造函数

ArrayEditor(Type)

使用数组的指定数据类型初始化 ArrayEditor 的新实例。

属性

CollectionItemType

获取集合中每项的数据类型。

(继承自 CollectionEditor)
CollectionType

获取集合对象的数据类型。

(继承自 CollectionEditor)
Context

获取指示当前上下文的类型说明符。

(继承自 CollectionEditor)
HelpTopic

在用户按下编辑器对话框中的“帮助”按钮或 F1 键时,获取“帮助”关键字以显示“帮助”主题或主题列表。

(继承自 CollectionEditor)
IsDropDownResizable

获取一个值,该值指示是否应由用户调整下拉编辑器的大小。

(继承自 UITypeEditor)
NewItemTypes

获取可为此集合创建的项的可用类型。

(继承自 CollectionEditor)

方法

CancelChanges()

取消对集合的更改。

(继承自 CollectionEditor)
CanRemoveInstance(Object)

指示是否可以移除集合的初始成员。

(继承自 CollectionEditor)
CanSelectMultipleInstances()

指示是否可一次选择多个集合项。

(继承自 CollectionEditor)
CreateCollectionForm()

创建新的窗体,以显示和编辑当前集合。

(继承自 CollectionEditor)
CreateCollectionItemType()

获取此集合需包含的数据类型。

CreateInstance(Type)

创建指定的集合项类型的新实例。

(继承自 CollectionEditor)
CreateNewItemTypes()

获取此集合编辑器可包含的数据类型。

(继承自 CollectionEditor)
DestroyInstance(Object)

销毁对象的指定实例。

(继承自 CollectionEditor)
EditValue(IServiceProvider, Object)

使用 GetEditStyle() 方法所指示的编辑器样式编辑指定对象的值。

(继承自 UITypeEditor)
EditValue(ITypeDescriptorContext, IServiceProvider, Object)

使用指定的服务提供程序和上下文编辑指定对象的值。

(继承自 CollectionEditor)
Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetDisplayText(Object)

检索给定列表项的显示文本。

(继承自 CollectionEditor)
GetEditStyle()

获取由 EditValue(IServiceProvider, Object) 方法使用的编辑器样式。

(继承自 UITypeEditor)
GetEditStyle(ITypeDescriptorContext)

获取 EditValue(ITypeDescriptorContext, IServiceProvider, Object) 方法使用的编辑样式。

(继承自 CollectionEditor)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetItems(Object)

获取数组中的项。

GetObjectsFromInstance(Object)

返回包含给定对象的列表。

(继承自 CollectionEditor)
GetPaintValueSupported()

指示该编辑器是否支持绘制对象值的表示形式。

(继承自 UITypeEditor)
GetPaintValueSupported(ITypeDescriptorContext)

指示指定的上下文是否支持在指定的上下文内绘制对象值的表示形式。

(继承自 UITypeEditor)
GetService(Type)

获取请求的服务(如果该服务可用的话)。

(继承自 CollectionEditor)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
PaintValue(Object, Graphics, Rectangle)

将指定对象值表示形式绘制到指定的画布上。

(继承自 UITypeEditor)
PaintValue(PaintValueEventArgs)

使用指定的 PaintValueEventArgs 绘制某个对象的值的表示形式。

(继承自 UITypeEditor)
SetItems(Object, Object[])

设置数组中的项。

ShowHelp()

显示集合编辑器的默认帮助主题。

(继承自 CollectionEditor)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

适用于

另请参阅