如何根据条件更改DataGridView列值

时间:2013-08-22 04:59:30

标签: c# winforms datagrid datagridview ado.net

是否可以根据条件更改列值或单元格值?

考虑我在DataGridView(即)中有3列,以找到最大的两个数字

来自DataGridView的输入来自SQL Server。

第一个Datagridview列是A,第二个是B,第三个列是查找A是否大于B.如果条件满足,则应在第3列中显示文本"TRUE""FALSE"

4 个答案:

答案 0 :(得分:1)

我在这里回答了类似的问题Changing Cell Values of DataGridView

您可以使用DataGridView.CellFormatting事件。在您的情况下,当需要格式化第三个Cell时,您需要为每个行检索其他Cell的值。

下面的示例代码假设:

  • int中的值为DataGridView:您需要进行适当的转换。
  • no NullDbNull值:如果需要,您需要检查空值。

void dgv_CellFormatting(object sender, System.Windows.Forms.DataGridViewCellFormattingEventArgs e)
{
    if (e.ColumnIndex == 2) {
        if (Convert.ToInt32(this.dgv.Rows[e.RowIndex].Cells[0].Value) > Convert.ToInt32(this.dgv.Rows[e.RowIndex].Cells[1].Value)) {
            e.Value = "TRUE";
        } else {
            e.Value = "FALSE";
        }
        e.FormattingApplied = true;
    }
}

答案 1 :(得分:0)

使用服务器端方法根据您的条件更改单元格的值:

 <asp:TemplateField HeaderText="Application No">
 <ItemTemplate>
 <asp:Label ID="lbl" Text='<%# chkValue(Eval("A"),Eval("B")) %>' runat="server" />
  </ItemTemplate>
  </asp:TemplateField>

chkValue函数将接受两个参数并检查哪个值更大并相应地返回true / false。

答案 2 :(得分:0)

试试这个

    <asp:GridView runat="server" ID="gv">
        <Columns>
            <asp:TemplateField HeaderText="a">
                <ItemTemplate>
                    <%# Eval("a") %>
                </ItemTemplate>
            </asp:TemplateField>
            <asp:TemplateField HeaderText="b">
                <ItemTemplate>
                    <%# Eval("b") %>
                </ItemTemplate>
            </asp:TemplateField>
            <asp:TemplateField HeaderText="display">
                <ItemTemplate>
                    <%# Convert.ToInt16(Eval("a"))>Convert.ToInt16(Eval("b"))?"True":"False" %>
                </ItemTemplate>
            </asp:TemplateField>
        </Columns>
    </asp:GridView>

答案 3 :(得分:0)

 Protected Sub dgrd_WWWH_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles dgrd_WWWH.RowDataBound
If e.Row.RowType And DataControlRowType.DataRow Then
                Dim ColA As Label = CType(e.Row.FindControl("colA"), Label)
Dim ColB As Label = CType(e.Row.FindControl("colB"), Label)
If Val(ColA) > Val(ColB) then
dgrd_WWWH.Rows(e.Row.RowIndex).Cells(2).Text = "True"
Else
dgrd_WWWH.Rows(e.Row.RowIndex).Cells(2).Text = "False"
End If
End If
End Sub