是否可以在DataGridView int列中显示空字符串而不是0?

时间:2013-05-25 19:36:55

标签: c# datagridview

我有一个DataTable,里面有关于音轨的信息。存储轨道号的DataTableColumn属于UInt32类型,因此当我在DataGridView中显示DataTable时,我能够按该列对数据进行排序。对于没有曲目编号的曲目,我在DataTable中得到0。

data.Tables["active"].Columns["Track"].DataType = Type.GetType("System.UInt32");

是否可以将DataGridView中该列中的每个0显示为空字符串(无)?但是仍然将它存储为DataTable中的UInt32 0以便能够对轨道进行排序吗?

2 个答案:

答案 0 :(得分:10)

当然,您可以使用CellFormatting事件:

private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
    if (dataGridView1.Columns[e.ColumnIndex].DataPropertyName == "Track")
    {
        uint value = (uint)e.Value;
        if (value == 0)
        {
            e.Value = string.Empty;
            e.FormattingApplied = true;
        }
    }
}

答案 1 :(得分:0)

只是一个小建议...添加另一列“System.String”并使其值等于Track列(隐藏轨道列),然后您可以在新的可见列中用空字符串替换0