我正在尝试使用数据库中的数据形成功能区XML,以下是我写的: -
XNamespace xNameSpace = "http://schemas.microsoft.com/office/2006/01/customui";
XDocument document = new XDocument();
document.Add( new XElement (xNameSpace+"customUI"
, new XElement("ribbon"
, new XElement("tabs"))));
// more code to add the groups and the controls with-in the groups
.......
// code below to add ribbon XML to the document and to add the relationship
RibbonExtensibilityPart ribbonExtensibilityPart = myDoc.AddNewPart<RibbonExtensibilityPart>();
ribbonExtensibilityPart.CustomUI = new DocumentFormat.OpenXml.Office.CustomUI.CustomUI(ribbonXml.ToString());
myDoc.CreateRelationshipToPart(ribbonExtensibilityPart);
我没有看到执行上述任何错误。但是,当我打开更改的文档时,我没有看到我的功能区添加。我在单词中的CustomUI / CustomUI.xml中看到以下内容: -
<?xml version="1.0" encoding="utf-8"?><customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon xmlns="">
<tabs>
.....
我不确定如何将“xmlns”属性添加到功能区元素中。当我删除该属性时,会显示功能区。
任何人都不知道我哪里出错了吗?
答案 0 :(得分:0)
我结束了字符串,用带状标记中的空字符串替换了字符串xmlns =“”。