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

DevExpress根据条件设置GridControl RepositoryItem是否可编辑

    来源: 互联网  发布时间:2014-10-31

    本文导语:  本文实例展示了DevExpress根据条件设置GridControl RepositoryItem是否可编辑的方法。 一般在C#项目的开发中,并不是每个RepositoryItem都可以编辑,往往是有条件性的,需要譬如当A列等于“AA”的时候,B列才可编辑,实现起来在ShowingEdi...

本文实例展示了DevExpress根据条件设置GridControl RepositoryItem是否可编辑的方法。

一般在C#项目的开发中,并不是每个RepositoryItem都可以编辑,往往是有条件性的,需要譬如当A列等于“AA”的时候,B列才可编辑,实现起来在ShowingEditor事件中最为方便,并且加入toolTip提示显得人性化。

主要功能代码如下:

private void gvLampConfig_ShowingEditor(object sender, System.ComponentModel.CancelEventArgs e)
{
  GridView _view = sender as GridView;
  if (_view.FocusedColumn.Name == "colSavePowerGp1")//当列等于colSavePowerGp1
  {
 string _type = _view.GetRowCellDisplayText(gvLampConfig.FocusedRowHandle, "OptStatusText_gp1");
 if (!_type.Equals("节能"))//当列OptStatusText_gp1的列值不等于OptStatusText_gp1
 {
   e.Cancel = true;
   ShowToolTip(toolTipController, "提示", "当是【调光状态】是节能模式情况,可以设置该值!");
 }
  }
}
public static void ShowToolTip(ToolTipController toolTip, string title, string content)
{
  Point _mousePoint = Control.MousePosition;
  toolTip.ShowHint(content, title, _mousePoint);
}

代码运行效果如下:

为了调高代码复用性,方便后续使用,可以这样子封装一下:

/// 
/// 设置RepositoryItem是否可编辑
/// 说明:
/// 在ShowingEditor事件中使用
/// 
/// GridView
/// 需要设置的列名称
/// 判断委托
/// ToolTipController
/// 当条件委托成立的时候提示标题
/// 当条件委托成立的时候提示内容
/// CancelEventArgs
private void CustomShowingEditorWithToolTip(GridView view, string focusedColumnName, Func conditonHanlder, ToolTipController toolTip, string title, string content, CancelEventArgs e)
{
  if (view.FocusedColumn.Name.Equals(focusedColumnName))
  {
 if (conditonHanlder(view.GetFocusedRow()))
 {
   e.Cancel = true;
   Point _mousePoint = Control.MousePosition;
   toolTip.ShowHint(content, title, _mousePoint);
 }
  }
}

代码使用如下:

private void gvLampConfig_ShowingEditor(object sender, System.ComponentModel.CancelEventArgs e)
{
  GridView _view = sender as GridView;
  CustomShowingEditorWithToolTip(_view, "colSavePowerGp1", arg => ((LampSelfRunCfgParamter)arg).OptStatusText_gp1 != "节能", toolTipController, "提示", "当是【调光状态】是节能模式情况,可以设置该值!", e);
}

希望本文所示代码能对大家有所帮助!


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












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


  • 站内导航:


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

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

    浙ICP备11055608号-3