ListControlDataBindingHandler Class
Performs data binding of a ListControl Web server control within a visual designer.
Assembly: System.Design (in System.Design.dll)
System.Web.UI.Design::DataBindingHandler
System.Web.UI.Design.WebControls::ListControlDataBindingHandler
| Name | Description | |
|---|---|---|
![]() | ListControlDataBindingHandler() | This API supports the product infrastructure and is not intended to be used directly from your code. Initializes a new instance of the ListControlDataBindingHandler class. |
| Name | Description | |
|---|---|---|
![]() | DataBindControl(IDesignerHost^, Control^) | Performs data binding on the specified control.(Overrides DataBindingHandler::DataBindControl(IDesignerHost^, Control^).) |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The ListControlDataBindingHandler class performs design-time data binding of a ListControl control. The ListControlDataBindingHandler class is referenced by the ListControl using the DataBindingHandlerAttribute class.
The DataBindControl method performs the design-time data binding.
This section contains two code examples. The first one demonstrates how to derive a control from the RadioButtonList control and associate it with its data binding handler. The second one demonstrates how to the derive a class from the ListControlDataBindingHandler class.
The following code example shows how to derive the SimpleRadioButtonList control from the RadioButtonList control, and then apply the DataBindingHandlerAttribute attribute to associate the SimpleRadioButtonList control with its data binding handler, the SimpleRadioButtonListDataBindingHandler class.
The following code example shows how to derive the SimpleRadioButtonListDataBindingHandler class from the ListControlDataBindingHandler class. It overrides the DataBindControl method to add a message to the associated SimpleRadioButtonList control when that control is data bound.
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
ListControl
ListControlDesigner
DataBindingHandler
DataBindingHandlerAttribute
System.Web.UI.Design.WebControls Namespace
ASP.NET Control Designers Overview
Walkthrough: Creating a Basic Control Designer for a Web Server Control
Extending Design-Time Support
How to: Extend the Appearance and Behavior of Controls in Design Mode

