• 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;
    }
    }
    }

     gridView3.CustomColumnDisplayText += gridView_CustomColumnDisplayText;

  • 相关阅读:
    Linux基础ls命令
    Linux基础tree命令
    Java银行调度系统
    Java交通灯系统
    Java反射
    Java基础IO流
    Java多线程
    Java集合框架
    Springmvc的一些属性功能
    JS
  • 原文地址:https://www.cnblogs.com/houzf/p/5620162.html
Copyright © 2020-2023  润新知