0

我在表单加载中将 ReadOnly 属性写为 true

dgvDcNon.Columns["itemDiscrip"].ReadOnly = true;

但该属性不工作。我应该采取更多步骤来实现这一点吗?

我在editingcontrolshowing事件中将自动完成模式设置为datagridview。有什么原因吗?我的代码是

           if (e.Control is TextBox)
            {
                TextBox tbValid = e.Control as TextBox;
                tbValid.KeyPress += new KeyPressEventHandler(tbValid_KeyPress);
            }
            String[] strAutoCmp = prodctsDCCls.AutoCmpltPrdct();
            TextBox txtAuto = e.Control as TextBox;
            txtAuto.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
            txtAuto.AutoCompleteSource = AutoCompleteSource.CustomSource;

            if (this.dgvDcNon.Columns[this.dgvDcNon.CurrentCell.ColumnIndex].Name == "itemDiscrip")
            {
                var name = new AutoCompleteStringCollection();
                name.AddRange(strAutoCmp);
                if (txtAuto != null)
                {
                    txtAuto.AutoCompleteCustomSource = name;
                }
            }
            else
            {
                txtAuto.AutoCompleteCustomSource = null;
            }
4

1 回答 1

0

会不会和数据源有关?如果数据源是只读的,那么您不能更改它。

已编辑

如果为此使用数据库模型,EX:

Class Item
{
    public string itemId {get; set;}
    public string itemName {get; set;}
    public string itemDiscrip {get; set;}
    public int itemSize {get; set;}
    //whatever
}

尝试从您的代码中删除设置器:

public int itemSize {get; set;}

应该成为

public int itemSize {get;}

如果您有其他类型的数据源,请尝试使用 readonly 修饰符。

于 2013-02-26T08:51:03.987 回答