本文介绍了如何更改颜色gridview的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Hai我在网格视图行中使用Gride视图重新打开意味着我需要更改颜色如何更改请帮助我下面是我的代码。



 受保护的  Sub  CallDGV_RowDataBound( ByVal 发​​件人作为 对象 ByVal  e  As  System.Web.UI.WebControls.GridViewRowEventArgs)句柄 CallDGV.RowDataBound 
如果 e.Row.RowType = DataControlRowType.DataRow 那么

Dim RowType As String = Convert.ToString(DataBinder .Eval(e.Row.DataItem, 状态))

如果 RowType = 重新打开 然后
e.Row.BackColor = System.Drawing.Color.Red
结束 如果

结束 如果


结束 Sub
解决方案

Hai i am using Gride view in the grid view row "Reopen "means i need to change the color How to change Please Help me Below is my code.

Protected Sub CallDGV_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles CallDGV.RowDataBound
       If e.Row.RowType = DataControlRowType.DataRow Then

           Dim RowType As String = Convert.ToString(DataBinder.Eval(e.Row.DataItem, "Status"))

           If RowType = "Reopen" Then
               e.Row.BackColor = System.Drawing.Color.Red
           End If

       End If


   End Sub
解决方案


这篇关于如何更改颜色gridview的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 15:32