DataGridView.AlternatingRowsDefaultCellStyle Özellik

Tanım

tek numaralı satırlarına DataGridViewuygulanan varsayılan hücre stilini alır veya ayarlar.

C#
public System.Windows.Forms.DataGridViewCellStyle AlternatingRowsDefaultCellStyle { get; set; }

Özellik Değeri

Tek DataGridViewCellStyle numaralı satırlara uygulanacak A.

Örnekler

Aşağıdaki kod örneği, bir denetimde DataGridView kayıt defteri efekti oluşturmak için bu özelliğin nasıl kullanılacağını gösterir. Bu örnek, sınıfa genel bakış bölümünde DataGridViewCellStyle bulunan daha büyük bir örneğin parçasıdır.

C#
// Configures the appearance and behavior of a DataGridView control.
private void InitializeDataGridView()
{
    // Initialize basic DataGridView properties.
    dataGridView1.Dock = DockStyle.Fill;
    dataGridView1.BackgroundColor = Color.LightGray;
    dataGridView1.BorderStyle = BorderStyle.Fixed3D;

    // Set property values appropriate for read-only display and 
    // limited interactivity. 
    dataGridView1.AllowUserToAddRows = false;
    dataGridView1.AllowUserToDeleteRows = false;
    dataGridView1.AllowUserToOrderColumns = true;
    dataGridView1.ReadOnly = true;
    dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
    dataGridView1.MultiSelect = false;
    dataGridView1.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.None;
    dataGridView1.AllowUserToResizeColumns = false;
    dataGridView1.ColumnHeadersHeightSizeMode = 
        DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
    dataGridView1.AllowUserToResizeRows = false;
    dataGridView1.RowHeadersWidthSizeMode = 
        DataGridViewRowHeadersWidthSizeMode.DisableResizing;

    // Set the selection background color for all the cells.
    dataGridView1.DefaultCellStyle.SelectionBackColor = Color.White;
    dataGridView1.DefaultCellStyle.SelectionForeColor = Color.Black;

    // Set RowHeadersDefaultCellStyle.SelectionBackColor so that its default
    // value won't override DataGridView.DefaultCellStyle.SelectionBackColor.
    dataGridView1.RowHeadersDefaultCellStyle.SelectionBackColor = Color.Empty;

    // Set the background color for all rows and for alternating rows. 
    // The value for alternating rows overrides the value for all rows. 
    dataGridView1.RowsDefaultCellStyle.BackColor = Color.LightGray;
    dataGridView1.AlternatingRowsDefaultCellStyle.BackColor = Color.DarkGray;

    // Set the row and column header styles.
    dataGridView1.ColumnHeadersDefaultCellStyle.ForeColor = Color.White;
    dataGridView1.ColumnHeadersDefaultCellStyle.BackColor = Color.Black;
    dataGridView1.RowHeadersDefaultCellStyle.BackColor = Color.Black;

    // Set the Format property on the "Last Prepared" column to cause
    // the DateTime to be formatted as "Month, Year".
    dataGridView1.Columns["Last Prepared"].DefaultCellStyle.Format = "y";

    // Specify a larger font for the "Ratings" column. 
    using (Font font = new Font(
        dataGridView1.DefaultCellStyle.Font.FontFamily, 25, FontStyle.Bold))
    {
        dataGridView1.Columns["Rating"].DefaultCellStyle.Font = font;
    }

    // Attach a handler to the CellFormatting event.
    dataGridView1.CellFormatting += new
        DataGridViewCellFormattingEventHandler(dataGridView1_CellFormatting);
}

Açıklamalar

Denetim, DataGridView hücre özelliği tarafından belirtilen stilleri kullanarak hücrelerini görüntüler ve türündeki InheritedStyle diğer özelliklerden DataGridViewCellStylestilleri devralır. Tek dizin numaralarına sahip satırlardaki hücreler için, özelliği aracılığıyla AlternatingRowsDefaultCellStyle belirtilen stiller , DataGridViewColumn.DefaultCellStyleve RowsDefaultCellStyleve aracılığıyla DefaultCellStylebelirtilen stilleri geçersiz kılar ve ve DataGridViewCell.Style özellikleriyle DataGridViewRow.DefaultCellStyle belirtilen stiller tarafından geçersiz kılınir.

Daha fazla bilgi için bkz. Windows Forms DataGridView Denetimindeki Hücre Stilleri.

Bu özellik elde edilirken, özelliğe henüz erişilmemişse varsayılan değerlere sahip bir DataGridViewCellStyle oluşturulur. Bu, birçok satır için bu özelliği alırken performans etkisine neden olabilir. Mümkün olduğunda, bu özelliği birden çok satır için ayarlamak için tek DataGridViewCellStyle bir kullanın. Daha fazla bilgi için bkz. Windows Forms DataGridView Denetimini Ölçeklendirmeye Yönelik En İyi Yöntemler.

Şunlara uygulanır

Ürün Sürümler
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

Ayrıca bkz.