2

下面是我的代码,我一直在尝试为单元格着色,但不确定当我的网格源是数据库时如何使用“样式”属性。我是新手,所以很难开始。

一些网站或指针会有很大帮助。

我希望能够为一些背景单元格着色或为某些行或特定列着色......基本上所有与颜色相关的东西。我怎样才能用我当前的代码片段做到这一点?另外,我可以了解更多信息的链接将不胜感激。

LarsTech 我正在尝试将您添加到聊天中,但我没有足够的代表,因此我想我无法与您联系。

Imports System.Data.SqlClient
Imports System.Collections.Generic

Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        Dim connectionString As String = "data source=SQst; database=MVar2; User ID=Wepp; Password=2010Live; Integrated Security=false;"

        Dim sql As String = "SELECT * FROM Prer"

        Dim connection As New SqlConnection(connectionString)

        Dim dataadapter As New SqlDataAdapter(sql, connection)

        Dim ds As New DataSet()

        connection.Open()

        dataadapter.Fill(ds, "Authors_table")

        connection.Close()

        DataGridView1.DataSource = ds

        DataGridView1.DataMember = "Authors_table"
    **DataGridView1.Rows[2].DefaultCellStyle.BackColor = Color.PaleGreen
    DataGridView1.Rows[3].Cells[1].Style.BackColor = Color.Red**    

    End Sub



    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click

        Call PrintDGV.Print_DataGridView(DataGridView1)

    End Sub





End Class

我得到的错误:

Error   1   Property access must assign to the property or use its value.   
Error   2   Identifier expected.    
Error   3   Property access must assign to the property or use its value.   
Error   4   Identifier expected.    

我试过:DataGridView1.Rows(0).Cell(0).Style.BackColor = Color.Red

我得到了 1 个错误:

Error   1   'Cell' is not a member of 'System.Windows.Forms.DataGridViewRow'.   

编辑:在网上查看更多内容后,我使用以下代码为选定的单元格着色:

DataGridView1.Item(4, 5).Style.BackColor = Color.Red

然而,这不会为行或列着色,所以我仍然希望让这些东西发挥作用。

4

2 回答 2

3

有几种不同的方法可以做到这一点。我相信 currentcell 是指当前活动的单元格,因此在填充网格后基于它着色将不会产生任何结果。

有几种方法可以做到这一点:

c#:
For rows/cells:
dataGridView1.Rows[RowNumber].DefaultCellStyle.BackColor = Color.PaleGreen;
dataGridView1.Rows[RowNumber].Cells[1].Style.BackColor = Color.Red;

for columns:
dataGridView1.Columns[ColumnNumber].DefaultCellStyle.BackColor = Color.Black;


VB:
DataGridView1.Rows(0).DefaultCellStyle.BackColor = Color.Green
DataGridView1.Columns(0).DefaultCellStyle.BackColor = Color.Blue

这两个都会将颜色应用于单元格背景。使用一些逻辑来控制如何/哪些单元格/行被着色。

于 2012-08-20T13:18:21.530 回答
0

您还可以在 .aspx 文件中以声明方式进行设置。该链接指向代码的 2.0 版本,但这仍然是兼容的。

MSDN

于 2012-08-20T13:31:37.533 回答