ListView.DrawSubItem Událost

Definice

Nastane, když je vykresleno zobrazení podrobností objektu ListViewOwnerDraw a vlastnost je nastavena na 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 

Event Type

Příklady

Následující příklad kódu poskytuje implementaci obslužné DrawSubItem rutiny události. Úplný příklad najdete v referenčním OwnerDraw tématu.

// 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

Poznámky

Tato událost umožňuje přizpůsobit vzhled ovládacího prvku pomocí výkresu ListView vlastníka. Vyvolá se pouze v OwnerDraw případech, kdy je vlastnost nastavena na true a View vlastnost je nastavena na View.Details. Další informace o výkresu vlastníka najdete v tématu s referenčními informacemi o OwnerDraw vlastnosti.

Poznámka

Podřízené informace se obvykle zobrazují v zobrazení dlaždic i v zobrazení podrobností, ale v zobrazení dlaždic musí být vykresleny v obslužné rutině DrawItem události.

Událost DrawSubItem může nastat pro každou ListView podřízenou položku. Událost můžete zpracovat DrawItem tak, aby nakreslila prvky společné pro všechny podnabídky, například pozadí, a zpracovat DrawSubItem událost tak, aby nakreslila prvky pro jednotlivé podřízené položky, jako jsou textové hodnoty. Můžete také kreslit všechny položky v ovládacím ListView prvku pomocí pouze jedné z těchto dvou událostí, i když to může být méně výhodné. Pokud chcete nakreslit záhlaví sloupců v zobrazení podrobností, musíte událost zpracovat DrawColumnHeader .

Poznámka

K DrawSubItem události nedochází pro žádné podřízené položky, pro které nebyl přidán žádný ColumnHeader objekt do Columns kolekce. Všimněte si také, že první podnabídka každého ListViewItem objektu představuje samotnou nadřazenou položku a je zobrazena v prvním sloupci.

Další informace o zpracování událostí najdete v tématu Zpracování a vyvolávání událostí.

Platí pro

Viz také