ListView.DrawSubItem Evento

Definizione

Si verifica quando viene creata una visualizzazione di dettaglio di una classe ListView e la proprietà OwnerDraw è impostata su true.

public:
 event System::Windows::Forms::DrawListViewSubItemEventHandler ^ DrawSubItem;
public event System.Windows.Forms.DrawListViewSubItemEventHandler DrawSubItem;
public event System.Windows.Forms.DrawListViewSubItemEventHandler? DrawSubItem;
member this.DrawSubItem : System.Windows.Forms.DrawListViewSubItemEventHandler 
Public Custom Event DrawSubItem As DrawListViewSubItemEventHandler 

Tipo evento

Esempio

Nell'esempio di codice seguente viene fornita un'implementazione di un DrawSubItem gestore eventi. Per l'esempio completo, vedere l'argomento OwnerDraw di riferimento.

// Draws subitem text and applies content-based formatting.
private void listView1_DrawSubItem(object sender,
    DrawListViewSubItemEventArgs e)
{
    TextFormatFlags flags = TextFormatFlags.Left;

    using (StringFormat sf = new StringFormat())
    {
        // Store the column text alignment, letting it default
        // to Left if it has not been set to Center or Right.
        switch (e.Header.TextAlign)
        {
            case HorizontalAlignment.Center:
                sf.Alignment = StringAlignment.Center;
                flags = TextFormatFlags.HorizontalCenter;
                break;
            case HorizontalAlignment.Right:
                sf.Alignment = StringAlignment.Far;
                flags = TextFormatFlags.Right;
                break;
        }

        // Draw the text and background for a subitem with a 
        // negative value. 
        double subItemValue;
        if (e.ColumnIndex > 0 && Double.TryParse(
            e.SubItem.Text, NumberStyles.Currency,
            NumberFormatInfo.CurrentInfo, out subItemValue) &&
            subItemValue < 0)
        {
            // Unless the item is selected, draw the standard 
            // background to make it stand out from the gradient.
            if ((e.ItemState & ListViewItemStates.Selected) == 0)
            {
                e.DrawBackground();
            }

            // Draw the subitem text in red to highlight it. 
            e.Graphics.DrawString(e.SubItem.Text,
                listView1.Font, Brushes.Red, e.Bounds, sf);

            return;
        }

        // Draw normal text for a subitem with a nonnegative 
        // or nonnumerical value.
        e.DrawText(flags);
    }
}
' Draws subitem text and applies content-based formatting.
Private Sub listView1_DrawSubItem(ByVal sender As Object, _
    ByVal e As DrawListViewSubItemEventArgs) _
    Handles listView1.DrawSubItem

    Dim flags As TextFormatFlags = TextFormatFlags.Left

    Dim sf As New StringFormat()
    Try

        ' Store the column text alignment, letting it default
        ' to Left if it has not been set to Center or Right.
        Select Case e.Header.TextAlign
            Case HorizontalAlignment.Center
                sf.Alignment = StringAlignment.Center
                flags = TextFormatFlags.HorizontalCenter
            Case HorizontalAlignment.Right
                sf.Alignment = StringAlignment.Far
                flags = TextFormatFlags.Right
        End Select

        ' Draw the text and background for a subitem with a 
        ' negative value. 
        Dim subItemValue As Double
        If e.ColumnIndex > 0 AndAlso _
            Double.TryParse(e.SubItem.Text, NumberStyles.Currency, _
            NumberFormatInfo.CurrentInfo, subItemValue) AndAlso _
            subItemValue < 0 Then

            ' Unless the item is selected, draw the standard 
            ' background to make it stand out from the gradient.
            If (e.ItemState And ListViewItemStates.Selected) = 0 Then
                e.DrawBackground()
            End If

            ' Draw the subitem text in red to highlight it. 
            e.Graphics.DrawString(e.SubItem.Text, _
                Me.listView1.Font, Brushes.Red, e.Bounds, sf)

            Return

        End If

        ' Draw normal text for a subitem with a nonnegative 
        ' or nonnumerical value.
        e.DrawText(flags)

    Finally
        sf.Dispose()
    End Try

End Sub

Commenti

Questo evento consente di personalizzare l'aspetto di un ListView controllo usando il disegno del proprietario. Viene generato solo quando la OwnerDraw proprietà è impostata su true e la View proprietà è impostata su View.Details. Per altre informazioni sul disegno del proprietario, vedere l'argomento di riferimento sulla OwnerDraw proprietà.

Nota

Le informazioni sull'elemento secondario vengono in genere visualizzate nella visualizzazione riquadro e nella visualizzazione dei dettagli, ma nella visualizzazione riquadro devono essere disegnate in un gestore per l'evento DrawItem .

L'evento DrawSubItem può verificarsi per ogni ListView elemento secondario. È possibile gestire l'evento per disegnare elementi comuni a tutti gli elementi secondari, ad esempio lo sfondo e gestire l'evento DrawItemDrawSubItem per disegnare elementi per singoli elementi secondari, ad esempio i valori di testo. È anche possibile disegnare tutti gli elementi nel ListView controllo usando solo uno dei due eventi, anche se questo potrebbe essere meno pratico. Per disegnare intestazioni di colonna nella visualizzazione dei dettagli, è necessario gestire l'evento DrawColumnHeader .

Nota

L'evento DrawSubItem non si verifica per gli elementi secondari per i quali non ColumnHeader è stato aggiunto alcun oggetto all'insieme Columns . Si noti anche che il primo elemento secondario di ogni ListViewItem oggetto rappresenta l'elemento padre stesso e viene visualizzato nella prima colonna.

Per ulteriori informazioni sulla gestione degli eventi, consultare gestione e generazione di eventi.

Si applica a

Vedi anche