DataGridViewRowPrePaintEventArgs.InheritedRowStyle Propriedade

Definição

Obtém o estilo de célula aplicado à linha.

public:
 property System::Windows::Forms::DataGridViewCellStyle ^ InheritedRowStyle { System::Windows::Forms::DataGridViewCellStyle ^ get(); };
public System.Windows.Forms.DataGridViewCellStyle InheritedRowStyle { get; }
member this.InheritedRowStyle : System.Windows.Forms.DataGridViewCellStyle
Public ReadOnly Property InheritedRowStyle As DataGridViewCellStyle

Valor da propriedade

Um DataGridViewCellStyle que contém o estilo de célula atualmente aplicado à linha.

Exemplos

O exemplo de código a seguir demonstra como usar a InheritedRowStyle propriedade para pintar uma tela de fundo personalizada para a linha selecionada. A variável , e, é do tipo DataGridViewRowPrePaintEventArgs. Este exemplo de código faz parte de um exemplo maior fornecido em Como personalizar a aparência de linhas no controle Windows Forms DataGridView.

// Determine whether the cell should be painted
// with the custom selection background.
if ((e.State & DataGridViewElementStates.Selected) ==
            DataGridViewElementStates.Selected)
{
    // Calculate the bounds of the row.
    Rectangle rowBounds = new Rectangle(
        this.dataGridView1.RowHeadersWidth, e.RowBounds.Top,
        this.dataGridView1.Columns.GetColumnsWidth(
            DataGridViewElementStates.Visible) -
        this.dataGridView1.HorizontalScrollingOffset + 1,
        e.RowBounds.Height);

    // Paint the custom selection background.
    using (Brush backbrush =
        new System.Drawing.Drawing2D.LinearGradientBrush(rowBounds,
            this.dataGridView1.DefaultCellStyle.SelectionBackColor,
            e.InheritedRowStyle.ForeColor,
            System.Drawing.Drawing2D.LinearGradientMode.Horizontal))
    {
        e.Graphics.FillRectangle(backbrush, rowBounds);
    }
}
' Determine whether the cell should be painted with the 
' custom selection background.
If (e.State And DataGridViewElementStates.Selected) = _
    DataGridViewElementStates.Selected Then

    ' Calculate the bounds of the row.
    Dim rowBounds As New Rectangle( _
        Me.dataGridView1.RowHeadersWidth, e.RowBounds.Top, _
        Me.dataGridView1.Columns.GetColumnsWidth( _
        DataGridViewElementStates.Visible) - _
        Me.dataGridView1.HorizontalScrollingOffset + 1, _
        e.RowBounds.Height)

    ' Paint the custom selection background.
    Dim backbrush As New _
        System.Drawing.Drawing2D.LinearGradientBrush(rowBounds, _
        Me.dataGridView1.DefaultCellStyle.SelectionBackColor, _
        e.InheritedRowStyle.ForeColor, _
        System.Drawing.Drawing2D.LinearGradientMode.Horizontal)
    Try
        e.Graphics.FillRectangle(backbrush, rowBounds)
    Finally
        backbrush.Dispose()
    End Try
End If

Comentários

A InheritedRowStyle propriedade contém os mesmos valores que a propriedade da InheritedStyle linha. Acessar diretamente um DataGridViewRow no pode afetar o DataGridView desempenho. Use InheritedRowStyle no RowPrePaint evento para evitar o compartilhamento da linha e manter o desempenho ideal.

A propriedade InheritedRowStyle é somente leitura. Embora você possa definir as propriedades do DataGridViewCellStyle recuperado por meio da InheritedRowStyle propriedade , as novas configurações não terão efeito.

Aplica-se a

Confira também