HyperLinkDataBindingHandler.DataBindControl(IDesignerHost, Control) Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Řeší datovou vazbu v době návrhu pro zadaný ovládací prvek.
public:
override void DataBindControl(System::ComponentModel::Design::IDesignerHost ^ designerHost, System::Web::UI::Control ^ control);
public override void DataBindControl (System.ComponentModel.Design.IDesignerHost designerHost, System.Web.UI.Control control);
override this.DataBindControl : System.ComponentModel.Design.IDesignerHost * System.Web.UI.Control -> unit
Public Overrides Sub DataBindControl (designerHost As IDesignerHost, control As Control)
Parametry
- designerHost
- IDesignerHost
Pro IDesignerHost dokument, který obsahuje ovládací prvek.
Příklady
Následující příklad kódu vytvoří třídu s názvem CustomHyperLinkDataBindingHandler
, která je odvozena od HyperLinkDataBindingHandler
třídy. Překládá datovou vazbu v době návrhu ImageUrl pro vlastnost CustomHyperLink
třídy tak, aby se zástupný text pro vlastnost zobrazil, pokud je v době návrhu vázán na data.
// Derive a class from the HyperLinkDataBindingHandler. It will
// resolve data binding for the CustomHyperlink at design time.
public class CustomHyperLinkDataBindingHandler :
HyperLinkDataBindingHandler
{
// Override the DataBindControl to set property values in
// the DataBindingCollection at design time.
public override void DataBindControl(IDesignerHost designerHost,
Control control)
{
DataBindingCollection bindings =
((IDataBindingsAccessor)control).DataBindings;
DataBinding imageBinding = bindings["ImageUrl"];
// If Text is empty, supply a default value.
if (!(imageBinding == null))
{
CustomHyperLink hype = (CustomHyperLink)control;
hype.ImageUrl = "Image URL.";
}
// Call the base method to bind the control.
base.DataBindControl(designerHost, control);
} // DataBindControl
} // CustomHyperLinkDataBindingHandler
' Derive a class from the HyperLinkDataBindingHandler. It will
' resolve data binding for the CustomHyperlink at design time.
Public Class CustomHyperLinkDataBindingHandler
Inherits HyperLinkDataBindingHandler
' Override the DataBindControl to set property values in
' the DataBindingCollection at design time.
Public Overrides Sub DataBindControl( _
ByVal designerHost As IDesignerHost, ByVal control As Control)
Dim bindings As DataBindingCollection = _
CType(control, IDataBindingsAccessor).DataBindings
Dim imageBinding As DataBinding = bindings("ImageUrl")
If Not (imageBinding Is Nothing) Then
Dim hLink As CustomHyperLink = CType(control, CustomHyperLink)
hLink.ImageUrl = "Image URL."
End If
MyBase.DataBindControl(designerHost, control)
End Sub
End Class
Poznámky
Tato metoda určuje, zda Text jsou vlastnosti a NavigateUrl ovládacího prvku vázány HyperLink na data. Text Pokud je vlastnost vázaná na data, tato metoda nastaví hodnotu vlastnosti na "DataBound". NavigateUrl Pokud je vlastnost vázaná na data, tato metoda nastaví hodnotu vlastnosti na textový řetězec tak, aby ovládací prvek měl vzhled funkčního hypertextového odkazu.