dev 设置表格一列数据显示格式
Posted houzf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dev 设置表格一列数据显示格式相关的知识,希望对你有一定的参考价值。
void gridView_CustomColumnDisplayText(object sender, DevExpress.XtraGrid.Views.Base.CustomColumnDisplayTextEventArgs e)
{
if (e.Column.FieldName == "GEO_LAT")
{
if (e.DisplayText.Length == 9)
{
string newste1 = e.DisplayText.Substring(0, 7);
string newste2 = e.DisplayText.Substring(7, 2);
e.DisplayText = newste1 + "." + newste2;
}
}
if (e.Column.FieldName == "GEO_LONG")
{
if (e.DisplayText.Length == 10)
{
string newste1 = e.DisplayText.Substring(0, 8);
string newste2 = e.DisplayText.Substring(8, 2);
e.DisplayText = newste1 + "." + newste2;
}
}
}
以上是关于dev 设置表格一列数据显示格式的主要内容,如果未能解决你的问题,请参考以下文章