ControlAdapter.Control Proprietà

Definizione

Ottiene un riferimento al controllo a cui è collegato questo adattatore di controllo.

protected:
 property System::Web::UI::Control ^ Control { System::Web::UI::Control ^ get(); };
[System.ComponentModel.Browsable(false)]
protected System.Web.UI.Control Control { get; }
[<System.ComponentModel.Browsable(false)>]
member this.Control : System.Web.UI.Control
Protected ReadOnly Property Control As Control

Valore della proprietà

Oggetto Control a cui è associato ControlAdapter.

Attributi

Esempio

Nell'esempio di codice seguente viene illustrato come derivare un controllo personalizzato dalla Control classe e quindi creare un adattatore corrispondente che eredita dalla ControlAdapter classe . L'adattatore esegue l'override della Control proprietà e restituisce un riferimento fortemente tipizzato al controllo .

#using <System.Web.Mobile.dll>
#using <System.dll>
#using <System.Web.dll>

using namespace System;
using namespace System::Web::UI;
using namespace System::Web::UI::Adapters;
using namespace System::Web::UI::WebControls;

public ref class CustomControl: public Control{};

public ref class CustomControlAdapter: public ControlAdapter
{
public:

   property System::Web::UI::Control^ Control 
   {
      // Return a strongly-typed reference to your custom control.
      System::Web::UI::Control^ get()
      {
         return (CustomControl^)ControlAdapter::Control;
      }
   }
   // Override other ControlAdapter members, as necessary. 
};
using System;
using System.Web.UI;
using System.Web.UI.Adapters;
using System.Web.UI.WebControls;

public class CustomControl : Control
{
    // Add your custom control code.
}

public class CustomControlAdapter : ControlAdapter
{
    // Return a strongly-typed reference to your custom control.
    public new CustomControl Control
    {
        get
        {
            return (CustomControl)base.Control;
        }

        // Override other ControlAdapter members, as necessary. 
    }
}
Imports System.Web.UI
Imports System.Web.UI.Adapters
Imports System.Web.UI.WebControls

Public Class CustomControl
    Inherits Control

    ' Add your custom control code.

End Class

Public Class CustomControlAdapter
    Inherits ControlAdapter

    ' Return a strongly-typed reference to your custom control.
    Public Shadows ReadOnly Property Control() As CustomControl
        Get
            Return CType(MyBase.Control, CustomControl)
        End Get
    End Property

    ' Override other ControlAdapter member as necessary. 

End Class

Commenti

Quando un adattatore di controllo derivato è collegato a un controllo, .NET Framework chiama determinati membri dell'adapter anziché i membri del controllo.

Note per gli eredi

Quando si eredita dalla ControlAdapter classe , è necessario implementare almeno una Control proprietà per restituire un'istanza fortemente tipizzata del controllo, come illustrato nella sezione Esempio.

Si applica a

Vedi anche