我正在用 c# 开发 asp.net 项目。在我的应用程序中,我使用 Devexpress htmleditors,我需要自定义 conetxtmenu。因此,我尝试从后面的代码中添加 conextmenu 项,但出现以下错误。
1.DevExpress.Web.ASPxHtmlEditor.ASPxHtmlEditor.ContextMenuItems' 由于其保护级别而无法访问
2.属性或索引器'DevExpress.Web.ASPxHtmlEditor.ASPxHtmlEditor.ContextMenuItems'不能在此上下文中使用,因为get访问器不可访问
这就是我在后面的代码中尝试过的。
htmlEdtBody.ContextMenuItems.Insert(0, new HtmlEditorContextMenuItem("Add Title...", "AddTitle"));
有谁知道这是什么原因?
谢谢