vb.net datagridview自定义格式

时间:2014-02-03 21:27:11

标签: vb.net datagridview datagridviewcolumn

当我加载datagridview

时,我有一个datagridview内容如下

enter image description here

Payment ID我希望ID类似于P00001我知道我必须使用掩码\P99999,但问题是如何?任何帮助将不胜感激提前感谢..我导入数据的access database中的输入掩码为\P99999;;#

1 个答案:

答案 0 :(得分:1)

E.g。

Dim table As New DataTable

With table.Columns
    .Add("Formatted", GetType(Integer))
    .Add("Unformatted", GetType(Integer))
End With

With table.Rows
    .Add(1, 1)
    .Add(2, 2)
    .Add(3, 3)
End With

Me.DataGridView1.DataSource = table
Me.DataGridView1.Columns(0).DefaultCellStyle.Format = "\P00000"