我的自定义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");
}
答案 0 :(得分:3)
首先,您在编写getScreentip="GetScreentip"
的xml中错误输入了处理程序名称,但在您编写的代码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";
}