Devexpress过滤器编辑器:使用ArrayList作为列的数据

时间:2015-07-22 15:04:43

标签: arraylist filter devexpress popupmenu

我有一个ArrayList,其中包含我需要在Devexpress过滤器编辑器中显示为字段/列的记录。如何在OnFilterControlPopupMenuShowing(对象发送方,PopupMenuShowingEventArgs e)函数中使用此ArrayList?

1 个答案:

答案 0 :(得分:0)

这有效:

    ArrayList list = new ArrayList(list1.Keys);

        foreach(列表中的字符串){
          filterControl1.FilterColumns.Add(new UnboundFilterColumn(s,s,typeof(string),new RepositoryItemTextEdit(),FilterColumnClauseClass.String));
            }