在运行时将TextEdit添加到DevExpress GridView的列

时间:2009-04-28 09:08:37

标签: c# gridview devexpress

我试图在运行时向DevExpress GridView上的一个列添加一个TextEdit,这就是我所拥有的(从一些自动生成的设计器代码中复制了很多)。

DevExpress.XtraEditors.Repository.RepositoryItemTextEdit commentTextEdit 
      = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
gvwEnquiryList.Columns["Comments"].ColumnEdit = commentTextEdit;
ctlEnquiryList.RepositoryItems.Add(commentTextEdit);

我错过了什么? (因为它不起作用,“评论”仍然只是一个正常的列)

1 个答案:

答案 0 :(得分:1)

使用下面的代码,我可以在文本字段中添加TextEdit列。我不需要使用RepositoryItems.Add函数。

        DevExpress.XtraEditors.Repository.RepositoryItemTextEdit commentTextEdit = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
        commentTextEdit.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
        commentTextEdit.Appearance.Options.UseBackColor = true;
        commentTextEdit.Name = "commentTextEdit";

        this.comments.ColumnEdit = commentTextEdit;