0

错误:索引超出范围 必须为非负数且小于集合的大小

我有一个定制的 LookUpEdit -

public class MyLookUpEdit : LookUpEdit

我参考以下链接将 MyLookUpEdit 添加到功能区。现在 MyLookUpEdit 在我的ribbonPageGroup--> 添加编辑器中可用。

http://www.devexpress.com/Support/Center/KB/ViewKBIssue.aspx?kbid=A1237

这是 MyLookUpEdit 的 InitializeControl 方法:

public void InitializeControl(ICollection cache, string columnField1, string columnField2, string valueField, bool isMultiColumn, int searchColumn)
        {
            Properties.ForceInitialize();
            const int maxDropDownSize = 7;
            Properties.Columns.Clear();

        if(isMultiColumn)
        {
                Properties.Columns.AddRange(new[] {
                new LookUpColumnInfo(columnField1, columnField1, columnField1.Length*6, FormatType.None, "", true, HorzAlignment.Near, DevExpress.Data.ColumnSortOrder.None),
                new LookUpColumnInfo(columnField2, columnField2, 100, FormatType.None, "", true , HorzAlignment.Near, DevExpress.Data.ColumnSortOrder.None)});
                Properties.ShowHeader = true;
                Properties.PopupFormMinSize = new Size(0, 0);
                Properties.AppearanceDropDownHeader.TextOptions.HAlignment = HorzAlignment.Near;
                Properties.AutoSearchColumnIndex = searchColumn;
        }
        else
        {
                Properties.Columns.AddRange(new[]{
                new LookUpColumnInfo(columnField1, columnField1, 10, FormatType.None, "", true, HorzAlignment.Near, DevExpress.Data.ColumnSortOrder.None),
                new LookUpColumnInfo(columnField2, columnField2, 0, FormatType.None, "", false , HorzAlignment.Near, DevExpress.Data.ColumnSortOrder.None)});
                Properties.ShowHeader = false;
                Properties.PopupFormMinSize = new Size(10, 10); // set popup width to control width

                break;
        }

        Properties.ShowFooter = false;
        Properties.ShowLines = true;
        Properties.ValueMember = valueField;
        Properties.DisplayMember = columnField1;
        Properties.DataSource = cache;
        if (cache == null) return;
        Properties.DropDownRows = cache.Count > maxDropDownSize ? maxDropDownSize : cache.Count;

        ColumnBestFit();
        HideIcon();
    }

但是在运行时,在功能区中,我无法单击按钮并查看查找编辑的所有可用值 - 看起来弹出窗口未打开,当我离开编辑时,以下代码会引发错误:

    protected override void OnLeave(EventArgs e)
    {
        if (IsPopupOpen) 
        {
            ItemIndex = PopupForm.SelectedIndex;
            _selectfromPopup = true;
        }
    Properties.DisplayMember = Properties.Columns[0].Caption; // This line throw the error

        base.OnLeave(e);

        if (textChanged)
            OnLeaveWithChangedText(e);

    }
4

1 回答 1

1

列列表为空可能有不同的原因,这取决于整个表单事件和方法链等等,但要确定并使用防御方法(我的瑞士军刀;-))

只需先检查一下:

Properties.DisplayMember = Properties.Columns[0].Caption;

所以只有Properties.Columns.Length > 0

这不会解决所有问题,但据我所知,它将阻止该异常并且您的代码将继续运行(但如果错误出现在其他地方,那么最终不会真正按照您的期望执行该列表不应该是空的)。

于 2011-09-14T22:06:21.520 回答