DataGridComponentEditor 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
为 DataGrid Web 服务器控件提供组件编辑器。
public ref class DataGridComponentEditor : System::Web::UI::Design::WebControls::BaseDataListComponentEditor
public class DataGridComponentEditor : System.Web.UI.Design.WebControls.BaseDataListComponentEditor
type DataGridComponentEditor = class
inherit BaseDataListComponentEditor
Public Class DataGridComponentEditor
Inherits BaseDataListComponentEditor
- 继承
-
DataGridComponentEditor
示例
下面的代码示例使用特性将此 EditorAttribute 编辑器与扩展类的 DataGrid 类相关联。
Imports System.ComponentModel
Imports System.Web.UI.WebControls
Imports System.Web.UI.Design.WebControls
Imports System.Security.Permissions
Namespace Examples.AspNet
' Associate the SimpleDataList class with its designer using the
' DesignerAttribute class.
' Associate the SimpleDataList class with the DataListComponentEditor
' object using the EditorAttribute class.
<DesignerAttribute( _
GetType(SimpleDataListDesigner)), _
EditorAttribute(GetType(DataListComponentEditor), _
GetType(ComponentEditor)) _
> _
Public Class SimpleDataList
Inherits DataList
' To customize the DataList class, insert code here.
End Class
End Namespace
注解
组件编辑器提供用户界面 (UI) ,用于编辑控件的属性 DataGrid 。
构造函数
DataGridComponentEditor() |
初始化 DataGridComponentEditor 类的新实例,并将其初始页设置为 0。 |
DataGridComponentEditor(Int32) |
初始化 DataGridComponentEditor 类的新实例,并将其初始页设置为指定索引。 |
方法
EditComponent(ITypeDescriptorContext, Object) |
使用指定的上下文信息创建编辑器窗口,该窗口允许用户编辑指定的组件。 (继承自 WindowsFormsComponentEditor) |
EditComponent(ITypeDescriptorContext, Object, IWin32Window) |
使用指定的上下文说明符和父窗口编辑指定的组件。 (继承自 BaseDataListComponentEditor) |
EditComponent(Object) |
编辑该组件并返回一个表示是否修改了该组件的值。 (继承自 ComponentEditor) |
EditComponent(Object, IWin32Window) |
使用拥有指定组件的指定窗口来创建编辑器窗口,该窗口允许用户编辑该指定组件。 (继承自 WindowsFormsComponentEditor) |
Equals(Object) |
确定指定对象是否等于当前对象。 (继承自 Object) |
GetComponentEditorPages() |
获取与可使用此编辑器进行编辑的页相对应的 Type 对象的数组。 |
GetHashCode() |
作为默认哈希函数。 (继承自 Object) |
GetInitialComponentEditorPageIndex() |
获取要在组件编辑器中显示的初始页面的索引。 (继承自 BaseDataListComponentEditor) |
GetType() |
获取当前实例的 Type。 (继承自 Object) |
MemberwiseClone() |
创建当前 Object 的浅表副本。 (继承自 Object) |
ToString() |
返回表示当前对象的字符串。 (继承自 Object) |