1 / 19

Office 2010 UI Customization

Office 2010 UI Customization. Office and Visual Studio 2010. Office Development with Visual Studio 2010. SharePoint Workflow still supported Click Once deployment supported Multiple addin deployment also supported Improved deployment support in Office 2010 with Visual Studio 2010

beede
Download Presentation

Office 2010 UI Customization

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Office 2010UI Customization Office and Visual Studio 2010

  2. Office Development with Visual Studio 2010 • SharePoint Workflow still supported • Click Once deployment supported • Multiple addindeployment also supported • Improved deployment support in Office 2010 with Visual Studio 2010 • Application life-cycle management through Team Foundation Server

  3. Support for Previous Versions • Visual Studio 2010 is backward compatible • Office 2007 project templates are supported • But not Office 2003 • VS 2010 and 2008 work side-by-side • All 2007 supported scenarios persist forward to 2010

  4. Customization Sample demo

  5. Office 2010UI Customization Office UI Customizations

  6. Ribbons in Visual Studio 2010 • Ribbon designer for basic applications • Direct XML for more complex applications

  7. Ribbons • Ability to programmatically select a tab • Group Scaling IRibbonUI.ActivateTab(String TabID) <group id="Wheel" autoScale="true">

  8. Context Menus

  9. Context Menus • Create context menus in ribbon XML • <customUI ...> • <ribbon> ... </ribbon> • <backstage> ... </backstage> • <contextMenus> • <contextMenuidMso=“ContextMenuCell"> • <button id="ButtonRefresh” .../> • </contextMenu> • </contextMenus> • </customUI>

  10. Backstage View Group Column Tab FastCommand

  11. Backstage View • Created at the same level as the Ribbon and context menus: • <customUI ...> • <ribbon> ... </ribbon> • <backstage> • <tab id=“Process” ...> ... </tab> • </backstage> • <contextMenus> ... </contextMenus> • </customUI>

  12. Backstage View • Add custom tabs to the Backstage view • Add fast commands to built-in/custom tabs • Add custom groups to built-in/custom tabs • Wide variety of control types available for building custom groups (button, checkBox, editBox, dropDown, radioGroup, comboBox, hyperlink, labelControl, groupBox, layoutContainer, imageControl, etc.)

  13. Customizing Office 2010 demo

  14. Office 2010UI Customization Custom Task Panes

  15. Custom Task Panes • Created with User Controls • Use with a variety of technologies • WPF controls • WCF services private void ThisAddIn_Startup (…) { ImagePaneip= new ImagePane(); Microsoft.Office.Tools.CustomTaskPanepane = this.CustomTaskPanes.Add(ip, "Images"); pane.Visible= true; }

  16. Custom Task Panes demo

  17. Office 2010UI Customization Outlook Form Regions

  18. Outlook Form Regions • Creating Form Regions in Outlook • Creating Form Regions in VS 2010

  19. Outlook Form Regions demo

More Related