Powerpoint - XML - 功能区 - 一些 idMso 的问题

Powerpoint - XML - Ribbon - Difficulties with some idMso

希望你一切都好。 我目前正在 powerpoint 中创建一个 customUI 功能区,但遇到了以下问题 with 未出现在功能区中:

    <button idMso="TextBoxInsert" visible="true"/>
    <button idMso="Font" visible="true"/>
    <button idMso="FontSize" visible="true"/>
    <button idMso="ShapeHeight" visible="true" showLabel="true"/>
    <button idMso="ShapeWidth" visible="true" showLabel="true"/>

我已阅读 Microsoft 文档:https://docs.microsoft.com/en-us/openspecs/office_standards/ms-customui/f2a8e3c0-14cb-4ad3-88cd-a8b5b1b9a8a0

并尝试了以下使整个功能区消失的方法:

    <tooglebutton idMso="TextBoxInsert" visible="true"/>
    <combobox idMso="Font" visible="true"/>
    <comboboxidMso="FontSize" visible="true"/>
    <combobox idMso="ShapeHeight" visible="true" showLabel="true"/>
    <combobox idMso="ShapeWidth" visible="true" showLabel="true"/>

经过几次尝试,我仍然不明白这个错误,也没有找到解决它的方法。

有人对此有想法吗? 亲切的问候, 纳克索斯

将 tooglebutton 更正为 togglebutton。 在第二个组合框和单词 idMso 之间添加一个 space。 ShapeHeight 和 ShapeWidth 都是控件,不是组合框。

当您刚开始编辑 XML 时,请从一个已知的良好安排开始,进行一次更改,然后进行测试。重复。否则很难确定错误的位置。