当前位置:  编程技术>.net/c#/asp.net

DevExpress中GridControl列转义的实现方法

    来源: 互联网  发布时间:2014-11-01

    本文导语:  在一些项目的实际开发过程中,我们有时候需要对GridControl中列值进行转义,譬如1转义成“完成”等等,一般在诸如CustomColumnDisplayText事件中能够轻松完成,为了提高代码复用性,所以需要对CustomColumnDisplayText进行包装。具体方...

在一些项目的实际开发过程中,我们有时候需要对GridControl中列值进行转义,譬如1转义成“完成”等等,一般在诸如CustomColumnDisplayText事件中能够轻松完成,为了提高代码复用性,所以需要对CustomColumnDisplayText进行包装。具体方法如下:

主要功能代码如下:

/// 
/// CustomColumnDisplayText Helper
/// 
/// GridView
/// 委托
/// 展现文字
/// CustomColumnDisplayTextEventArgs
public static void CusColDisplayTextHelper(this GridView girdview, Predicate fieldNameHandler, Func dispalyTextHandler, CustomColumnDisplayTextEventArgs e)
{
  if (fieldNameHandler(e.Column.FieldName))
  {
 e.DisplayText = dispalyTextHandler(e.Value);
  }
}
/// 
/// CustomColumnDisplayText Helper
/// 
/// GridView
/// 委托
/// 委托
/// CustomColumnDisplayTextEventArgs
public static void CusColDisplayTextHelper(this GridView girdview, Func valueHandler, Func dispalyTextHandler, CustomColumnDisplayTextEventArgs e)
{
  if (valueHandler(e.Value, e.Value.GetType()))
  {
 e.DisplayText = dispalyTextHandler(e.Value);
  }
}
/// 
///CustomColumnDisplayText Helper
/// 
/// GridView
/// 委托
/// 展现文字
/// CustomColumnDisplayTextEventArgs
public static void CusColDisplayTextHelper(this GridView girdview, Func valueHandler, string curdispalyText, CustomColumnDisplayTextEventArgs e)
{
  if (valueHandler(e.Value, e.Value.GetType()))
  {
 e.DisplayText = curdispalyText;
  }
}

代码使用方法如下:

private void gvLampConfig_CustomColumnDisplayText(object sender, CustomColumnDisplayTextEventArgs e)
{
  gvLampConfig.CusColDisplayTextHelper(name => name.Equals("LampViDirection"), value => value.ToInt(1) == 1 ? "正向" : "反向", e);
  gvLampConfig.CusColDisplayTextHelper(name => name.Equals("LampWorkStatus"), TranLampWorkType, e);
  gvLampConfig.CusColDisplayTextHelper(name => name.Equals("CTUChNo"), value => string.Format("第{0}回路", value), e);
  gvLampConfig.CusColDisplayTextHelper(name => name.Equals("LampPhase"), TranLampPhase, e);
  gvLampConfig.CusColDisplayTextHelper(name => name.Equals("LampDeviceType"), TranLampDeviceType, e);
  gvLampConfig.CusColDisplayTextHelper(name => name.Equals("LampPower"), value => string.Format("{0} W", value), e);
  gvLampConfig.CusColDisplayTextHelper(name => name.Equals("LampIntensity"), value => string.Format("{0} %", value), e);
  gvLampConfig.CusColDisplayTextHelper((value, type) => value.ToInt(-1) == -1 && type == typeof(Int32), "不修改", e);
}
private string TranLampDeviceType(object type)
{
  int _type = type.ToInt(-1);
  if (_type == 1) return "钠灯";
  if (_type == 2) return "LED灯";
  if (_type == 3) return "无极灯";
  return "--";
}
private string TranLampPhase(object type)
{
  int _type = type.ToInt(-1);
  if (_type == 0) return "未知";
  if (_type == 1) return "A相";
  if (_type == 2) return "B相";
  if (_type == 3) return "C相";
  return "--";
}
private string TranLampWorkType(object type)
{
  int _type = type.ToInt(-1);
  if (_type == 0) return "关闭但不删除";
  if (_type == 1) return "启用";
  if (_type == 2) return "删除";
  return "--";
}

代码运行效果如下所示:


    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • DevExpress实现根据行,列索引来获取RepositoryItem的方法
  • DevExpress实现为TextEdit设置水印文字的方法
  • DevExpress实现GridView当无数据行时提示消息
  • DevExpress实现TreeList按条件隐藏节点CheckBox的方法
  • DevExpress实现TreeList向上递归获取符合条件的父节点
  • DevExpress实现自定义TreeListNode的Tooltip的方法
  • DevExpress获取TreeList可视区域节点集合的实现方法
  • DevExpress实现TreeList父子节点CheckState状态同步的方法
  • DevExpress获取节点下可视区域子节点集合的实现方法
  • DevExpress实现禁用TreeListNode CheckBox的方法
  • DevExpress实现TreeList向上递归获取公共父节点的方法
  • DevExpress实现TreeList节点互斥的方法
  • DevExpress SplitContainerControl用法总结
  • DevExpress设置TreeList图片节点背景色的方法
  • DevExpress设置FocusedNode背景色的方法
  • DevExpress之SplashScreen用法实例
  • DevExpress之ChartControl用法实例总结
  • DevExpress之TreeList用法实例总结


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3