Udostępnij za pośrednictwem


MenuDesigner.GetEmptyDesignTimeHtml Metoda

Definicja

Pobiera znacznik, który renderuje symbol zastępczy skojarzonej kontrolki w czasie projektowania, gdy w przeciwnym razie nie jest dostępna żadna adiustacja.

protected:
 override System::String ^ GetEmptyDesignTimeHtml();
protected override string GetEmptyDesignTimeHtml ();
override this.GetEmptyDesignTimeHtml : unit -> string
Protected Overrides Function GetEmptyDesignTimeHtml () As String

Zwraca

Ciąg zawierający tekst znaczników renderowany w symbolu zastępczym na powierzchni projektowej.

Przykłady

W poniższym przykładzie kodu pokazano, jak zastąpić metodę GetEmptyDesignTimeHtml w klasie dziedziczonej MenuDesigner z klasy . Metoda przesłonięć zmienia wygląd kontrolki pochodzącej Menu z klasy w czasie projektowania. Przykład generuje znaczniki dla symbolu zastępczego zawierającego komunikat wskazujący, że żadne elementy menu nie są zdefiniowane dla skojarzonej kontrolki.

// Generate the design-time markup for the control 
// when the template is empty.
protected override string GetEmptyDesignTimeHtml()
{
    string noElements = "Contains no menu items.";

    return CreatePlaceHolderDesignTimeHtml(noElements);
} // GetEmptyDesignTimeHtml
' Generate the design-time markup for the control 
' when the template is empty.
Protected Overrides Function GetEmptyDesignTimeHtml() As String

    Dim noElements As String = "Contains no menu items."

    Return CreatePlaceHolderDesignTimeHtml(noElements)

End Function ' GetEmptyDesignTimeHtml

Uwagi

Metoda GetEmptyDesignTimeHtml generuje znaczniki dla symbolu zastępczego, który określa Menu nazwę kontrolki i komunikat z instrukcją użycia edytora kolekcji w celu dodania elementów.

Dotyczy

Zobacz też