Udostępnij za pośrednictwem


ListControlDesigner.GetDesignTimeHtml Metoda

Definicja

Pobiera kod HTML, który jest używany do reprezentowania kontrolki w czasie projektowania.

public:
 override System::String ^ GetDesignTimeHtml();
public override string GetDesignTimeHtml ();
override this.GetDesignTimeHtml : unit -> string
Public Overrides Function GetDesignTimeHtml () As String

Zwraca

String

Znacznik String zawierający znaczniki używane do renderowania kontrolki pochodzącej ListControl z obiektu w czasie projektowania.

Przykłady

Poniższy przykład kodu zastępuje metodę GetDesignTimeHtml , aby dostosować znaczniki wyświetlane dla skojarzonej kontrolki na powierzchni projektowej. BackColor Jeśli właściwość nie jest zdefiniowana dla skojarzonej kontrolki, jest ustawiona na Gainsboro, a kontrolka jest wyświetlana przy użyciu tego koloru tła. Po wykonaniu tej czynności jest wywoływana podstawowa implementacja GetDesignTimeHtml metody.

Ten przykład kodu jest częścią większego przykładu podanego ListControlDesigner dla klasy.

// Create the markup to display the control on the design surface. 
public override string GetDesignTimeHtml()
{
    string designTimeMarkup = null;

    // Create variables to access the control
    // item collection and back color.
    ListItemCollection items = simpleRadioButtonList.Items;
    Color oldBackColor = simpleRadioButtonList.BackColor;

    // Check the property values and render the markup
    // on the design surface accordingly.
    try
    {
        if (oldBackColor == Color.Empty)
            simpleRadioButtonList.BackColor = Color.Gainsboro;

        if (changedDataSource)
            items.Add("Updated to a new data source: " + 
                DataSource + ".");

        // Call the base method to generate the markup.
        designTimeMarkup = base.GetDesignTimeHtml();
    }
    catch (Exception ex)
    {
        // Catch any exceptions that occur.
        designTimeMarkup = GetErrorDesignTimeHtml(ex);
    }
    finally
    {
        // Set the properties back to their original state.
        simpleRadioButtonList.BackColor = oldBackColor;
        items.Clear();
    }

    return designTimeMarkup;
} // GetDesignTimeHtml
' Create the markup to display the control on the design surface.
Public Overrides Function GetDesignTimeHtml() As String

    Dim designTimeHtml As String = String.Empty

    ' Create variables to access the control's
    ' item collection and back color. 
    Dim items As ListItemCollection = simpleRadioButtonList.Items
    Dim oldBackColor As Color = simpleRadioButtonList.BackColor

    ' Check the property values and render the markup
    ' on the design surface accordingly.
    Try
        If (Color.op_Equality(oldBackColor, Color.Empty)) Then
            simpleRadioButtonList.BackColor = Color.Gainsboro
        End If

        If (changedDataSource) Then
            items.Add( _
                "Updated to a new data source: " & DataSource & ".")
        End If

        designTimeHtml = MyBase.GetDesignTimeHtml()

    Catch ex As Exception
        ' Catch any exceptions that occur.
        MyBase.GetErrorDesignTimeHtml(ex)

    Finally
        ' Set the properties back to their original state.
        simpleRadioButtonList.BackColor = oldBackColor
        items.Clear()
    End Try

    Return designTimeHtml
End Function ' GetDesignTimeHtml

Uwagi

Jeśli skojarzona kontrolka pochodząca z obiektu jest powiązana z ListControl danymi, GetDesignTimeHtml metoda czyści kolekcję i dodaje String komunikat wskazującyItems, że kontrolka jest powiązana z danymi. Jeśli skojarzona kontrolka nie jest powiązana z danymi, a Items kolekcja jest pusta, GetDesignTimeHtml dodaje String komunikat wskazujący, że kontrolka jest niezwiązana. Następnie metoda podstawowa GetDesignTimeHtml wywołuje metodę w celu wygenerowania znaczników.

Dotyczy

Zobacz też