获取RepositoryItem的编辑器

时间:2011-09-12 17:07:25

标签: c# .net winforms devexpress

我认为RepositoryItem的编辑器是动态创建的。有没有办法获得对编辑器的引用?

1 个答案:

答案 0 :(得分:0)

根据DevEx documentation,您必须设置存储库项的所有属性。这样做将允许父控件动态创建正确的“类型”编辑器。然后将其添加到控件的存储库项集合中 - 例如。来自文档:

RepositoryItemDateEdit riDateEdit = new RepositoryItemDateEdit();
// Customize the item... 
// Add the item to the control's internal repository. 
treeList1.RepositoryItems.Add(riDateEdit);
// Bind the item to the control's column. 
treeList1.Columns["Start Date"].ColumnEdit = riDateEdit;

将存储库项添加到items集后,您应该能够找到并引用该编辑器。 HTH ...