浏览器之家


为Office2007用户界面增加自定义按钮

本文主要为大家介绍下在office2007中如何通过使用XML和编程代码的方式为Office2007的用户界面添加自定义按钮。

可以使用 XML 和编程代码的组合,添加自已的自定义按钮到 Ribbon 中,或者重复使用一些内置按钮。

使用XML添加控件

代码如下:
<?xml version=”1.0″ encoding=”utf-8″ ?>
<customUI xmlns=”http://schemas.microsoft.com/office/2006/01/customui” loadImage=”LoadImage” >
    <ribbon startFromScratch=”false”>
        <tabs>
            <tab id=”tab1″ label=”Button Demo” keytip=”z” >
                <group id=”group1″ label=”Demo Group”>
                    <button id=”button1″
                        enabled=”true”
                        getLabel=”GetLabel”
                        keytip=”A1″
                        getScreentip=”GetScreentip”
                        supertip=”This is a supertip for the button.”
                        getShowLabel=”GetShowLabel”
                        getShowImage=”GetShowImage”
                        getSize=”GetSize”
                        visible=”true”
                        image=”camera.bmp”
                        onAction=”OnAction” />
                    <button id=”button2″

评论

没安装畅言模块