|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui" onLoad="OnWPSWorkTabLoad">
- <ribbon startFromScratch="false">
-
- <tabs>
-
-
- <tab id="WPSWorkExtTab" label="丽水项管" getVisible="OnGetVisible" insertBeforeMso="TabHome">
-
-
- <group id="grpWPSWork" label="OA助手文档操作功能组" getVisible="OnGetVisible">
- <button id="btnSaveToServer" label="保存到项管" onAction="OnAction" getEnabled="OnGetEnabled" getImage="GetImage" size="large"/>
- <button id="btnSaveAsFile" label="保存本地" getLabel="OnGetLabel" onAction="OnAction" getEnabled="OnGetEnabled" getVisible="OnGetVisible" getImage="GetImage" size="large" />
-
-
-
- </group>
-
-
-
-
-
-
-
-
- <group id="grpNotice" label="通知消息" getVisible="OnGetVisible">
- <box id="boxNotice" boxStyle="vertical" visible="true">
- <button id="btnSendMessage1" label="执行业务系统函数handleOaFunc1" onAction="OnAction" getEnabled="OnGetEnabled" getVisible="OnGetVisible" getImage="GetImage" size="large"/>
- <button id="btnSendMessage2" label="执行业务系统函数handleOaFunc2" onAction="OnAction" getEnabled="OnGetEnabled" getVisible="OnGetVisible" getImage="GetImage" size="large"/>
- </box>
- <button id="btnAddWebShape" label="插入活动对象" onAction="OnAction" getEnabled="OnGetEnabled" getVisible="OnGetVisible" getImage="GetImage" size="large"/>
- </group>
- </tab>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- </tabs>
- </ribbon>
- <commands>
-
-
- <command idMso="Copy" getEnabled="OnGetEnabled" />
- <command idMso="Cut" getEnabled="OnGetEnabled" />
-
- <command idMso="FileSave" getEnabled="OnGetEnabled" onAction="OnAction"/>
- <command idMso="SaveAll" getEnabled="OnGetEnabled" />
- <command idMso="FileSaveAsMenu" getEnabled="OnGetEnabled" onAction="OnAction"/>
- <command idMso="FileSaveAs" getEnabled="OnGetEnabled" onAction="OnAction"/>
- <command idMso="FileSaveAsPicture" getEnabled="OnGetEnabled" />
- <command idMso="SaveAsPicture" getEnabled="OnGetEnabled" />
- <command idMso="FileMenuSendMail" getEnabled="OnGetEnabled" />
-
- <command idMso="SaveAsPDF" getEnabled="OnGetEnabled"/>
- <command idMso="FileSaveAsPDF" getEnabled="OnGetEnabled"/>
- <command idMso="ExportToPDF" getEnabled="OnGetEnabled"/>
- <command idMso="FileSaveAsPdfOrXps" getEnabled="OnGetEnabled"/>
-
- <command idMso="SaveAsOfd" getEnabled="OnGetEnabled"/>
- <command idMso="FileSaveAsOfd" getEnabled="OnGetEnabled"/>
-
- <command idMso="FilePrint" getEnabled="OnGetEnabled"/>
- <command idMso="FilePrintMenu" getEnabled="OnGetEnabled"/>
- <command idMso="FilePrintPreview" getEnabled="OnGetEnabled"/>
-
- <command idMso="ReviewTrackChangesMenu" getEnabled="OnGetEnabled"/>
- <command idMso="ReviewRejectChangeMenu" getEnabled="OnGetEnabled"/>
- <command idMso="ReviewAcceptChangeMenu" getEnabled="OnGetEnabled"/>
-
- <command idMso="FileNewMenu" getEnabled="OnGetEnabled" onAction="OnAction"/>
- <command idMso="FileNew" getEnabled="OnGetEnabled" onAction="OnAction"/>
- <command idMso="WindowNew" getEnabled="OnGetEnabled" onAction="OnAction"/>
- <command idMso="FileNewBlankDocument" getEnabled="OnGetEnabled" onAction="OnAction"/>
- </commands>
- <contextMenus>
- <contextMenu idMso="ContextMenuText">
- <menu id="Menu_ContextMenuText" label="测试右键" visible="true">
- <button id="ShowAlert_ContextMenuText" label="弹出一个警告框" onAction="OnAction" getImage="GetImage" visible="true"/>
- </menu>
- </contextMenu>
- </contextMenus>
- </customUI>
|