1
我認爲RepositoryItem的編輯器是動態創建的。有沒有辦法獲得對編輯器的引用?獲取RepositoryItem的編輯器
我認爲RepositoryItem的編輯器是動態創建的。有沒有辦法獲得對編輯器的引用?獲取RepositoryItem的編輯器
根據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;
一旦添加了庫項目的項目集合,你應該能夠找到並參考編輯器。 HTH ...
從哪裏?你爲什麼想這樣做? – SLaks
費爾南多,你應該詳細闡述你的問題。你是否與設計師分配了一個特定的編輯器?你想做什麼,爲什麼以及什麼時候,如果你得到一個參考,你不能用設計師做什麼? –
我想在運行時執行此操作---獲取RepositoryItem的編輯器。 – Fernando