Udostępnij za pośrednictwem


IWebActionable.Verbs Właściwość

Definicja

Pobiera odwołanie do kolekcji obiektów niestandardowych WebPartVerb .

public:
 property System::Web::UI::WebControls::WebParts::WebPartVerbCollection ^ Verbs { System::Web::UI::WebControls::WebParts::WebPartVerbCollection ^ get(); };
public System.Web.UI.WebControls.WebParts.WebPartVerbCollection Verbs { get; }
member this.Verbs : System.Web.UI.WebControls.WebParts.WebPartVerbCollection
Public ReadOnly Property Verbs As WebPartVerbCollection

Wartość właściwości

Obiekt WebPartVerbCollection zawierający obiekty niestandardowe WebPartVerb .

Przykłady

W poniższym przykładzie kodu pokazano użycie Verbs właściwości jako zaimplementowanej w kontrolce użytkownika. Pełny kod dla tego przykładu kodu można znaleźć w sekcji Przykład w IWebActionable temacie Omówienie klasy.

W poniższej części przykładu kodu pokazano niestandardową implementację Verbs właściwości w kontrolce użytkownika.

// This property implements the IWebActionable interface.
WebPartVerbCollection IWebActionable.Verbs
{
  get
  {
    if (m_Verbs == null)
    {
      ArrayList verbsList = new ArrayList();
      WebPartVerb onlyVerb = new WebPartVerb
        ("customVerb1", new WebPartEventHandler(IncrementVerbCounterClicks));
      onlyVerb.Text = "My Verb";
      onlyVerb.Description = "VerbTooltip";
      onlyVerb.Visible = true;
      onlyVerb.Enabled = true;
      verbsList.Add(onlyVerb);
      WebPartVerb otherVerb = new WebPartVerb
        ("customVerb2", new WebPartEventHandler(IncrementVerbCounterClicks));
      otherVerb.Text = "My other Verb";
      otherVerb.Description = "Other VerbTooltip";
      otherVerb.Visible = true;
      otherVerb.Enabled = true;
      verbsList.Add(otherVerb);
      m_Verbs = new WebPartVerbCollection(verbsList);
      return m_Verbs;
    }
    return m_Verbs;
  }
}
' This property implements the IWebActionable interface.
ReadOnly Property Verbs() As WebPartVerbCollection _
  Implements IWebActionable.Verbs
  Get
    If (m_Verbs Is Nothing) Then
      Dim verbsList As New ArrayList()
      Dim onlyVerb As New WebPartVerb _
        ("customVerb1", New WebPartEventHandler(AddressOf IncrementVerbCounterClicks))
      onlyVerb.Text = "My Verb"
      onlyVerb.Description = "VerbTooltip"
      onlyVerb.Visible = True
      onlyVerb.Enabled = True
      verbsList.Add(onlyVerb)
      Dim otherVerb As New WebPartVerb _
        ("customVerb2", New WebPartEventHandler(AddressOf IncrementVerbCounterClicks))
      otherVerb.Text = "My other Verb"
      otherVerb.Description = "Other VerbTooltip"
      otherVerb.Visible = True
      otherVerb.Enabled = True
      verbsList.Add(otherVerb)
      m_Verbs = New WebPartVerbCollection(verbsList)
    End If
    Return m_Verbs
  End Get
End Property

Uwagi

Właściwość Verbs odwołuje się do kolekcji niestandardowych czasowników (jeśli istnieją), które są dodawane do menu czasowników w nagłówku WebPart kontrolki serwera lub innej. Kolekcja Verbs nie zawiera odwołań do standardowych WebPartVerb obiektów dostarczanych z zestawem kontrolek składników Web Part, takich jak CloseVerb, DeleteVerb, EditVerb, RestoreVerblub MinimizeVerb.

Deweloperzy, którzy chcą dodać czasowniki niestandardowe do kontrolki niestandardowej pochodzącej z WebPart klasy, mogą po prostu zastąpić Verbs właściwość implementaną przez WebPart klasę.

Deweloperzy, którzy chcą dodać niestandardowe czasowniki do kontrolki użytkownika lub kontrolkę niestandardową, która nie jest kontrolką WebPart , muszą zaimplementować IWebActionable interfejs, zapewniając implementację Verbs właściwości.

Dotyczy

Zobacz też