我的自定义XML功能区存在问题,
回调“ onAction”,“ getImage”和“ getEnabled”可以正常工作,但是getScreentip和getSupertip不起作用。

XML:

<?xml version="1.0" encoding="UTF-8"?>
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load">
  <ribbon startFromScratch="true">
    <qat>
      <sharedControls>
        <button id="Flag_fr-FR"
                onAction="OnActionCallback"
                getScreentip="GetScreentip"
                getSupertip="GetSupertip"
                getImage="GetImage"/>
        <button id="Flag_en-EN"
                onAction="OnActionCallback"
                getScreentip="GetScreentip"
                getSupertip="GetSupertip"
                getImage="GetImage"/>
        <separator id="Sep1" insertAfterQ="FlagEn"/>
        <button id="Refresh"
                insertAfterQ="Sep1"
                getScreentip="GetScreentip"
                getSupertip="GetSupertip"
                onAction="OnActionCallback"
                getImage="GetImage"/>
        <separator id="Sep2" insertAfterQ="Refresh"/>
        <button id="Search"
                insertAfterQ="Sep2"
                getScreentip="GetScreentip"
                getSupertip="GetSupertip"
                onAction="OnActionCallback"
                getImage="GetImage"/>
        <button id="OnScreenKeyboard" insertAfterQ="Search"
                getScreentip="GetScreentip"
                getSupertip="GetSupertip"
                onAction="OnActionCallback"
                getImage="GetImage"/>
        <button id="Logout" insertAfterQ="OSK"
                getScreentip="GetScreentip"
                getSupertip="GetSupertip"
                onAction="OnActionCallback"
                getEnabled="GetEnabled"
                getImage="GetImage"/>
      </sharedControls>
    </qat>
  </ribbon>
</customUI>


后台代码:

public String GetScreetip(Office.IRibbonControl control)
 {
     return ("Test...");
 }

 public String GetSupertip(Office.IRibbonControl control)
 {
     return ("Test");
 }

最佳答案

首先,您输入了错误的处理程序名称,在xml中编写了getScreentip="GetScreentip",但是在代码中编写了GetScreetip,而错过了n

其次,由于某种原因,Office会忽略字符组合...,因此它将仅显示Test

除此之外,一切似乎还不错。

例:

Ribbon.xml

<?xml version="1.0" encoding="UTF-8"?>
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
    <ribbon>
        <tabs>
            <tab idMso="TabAddIns">
                <group label="MyAddIn">
                    <button id="buttonAbout"
                            onAction="buttonAbout_Click"
                            label="About"
                            getScreentip="buttonAbout_Screentip"
                            getSupertip="buttonAbout_Supertip" />
                </group>
            </tab>
        </tabs>
    </ribbon>
</customUI>


Ribbon.cs

public void buttonAbout_Click(Office.IRibbonControl control)
{
    if (control.Id != "buttonAbout")
        return;
    // it's not advised to use MessageBox in Office Addins
    // sometimes it gets blocked by Office
    MessageBox.Show("MyAddin v1.0");
}

public string buttonAbout_Screentip(Office.IRibbonControl control)
{
    if (control.Id != "buttonAbout")
        return string.Empty;
    return "About Screentip";
}

public string buttonAbout_Supertip(Office.IRibbonControl control)
{
    if (control.Id != "buttonAbout")
        return string.Empty;
    return "About Supertip";
}

关于c# - VSTO Word 2010 getScreentip getSupertip未触发,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12070559/

10-10 15:51