ribbon-control

Does anyone ever use the Ribbon Control? [closed]

最后都变了- 提交于 2019-12-04 17:48:25
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . The ribbon control seems to be the rage now that Windows 7 is here. It occurred to me from this link for a ribbon control here on

Open XML SDK - Adding a macro programatically to a Word 2007 document

心已入冬 提交于 2019-12-03 16:33:47
I am trying to dynamically add a new custom ribbon in a Word 2007 document following teh manual method described in this article :- http://msdn.microsoft.com/en-us/library/aa338202(v=office.12).aspx . The article specifies the following :- a) Create a XML file named customUI.xml which will contain the elements you want to display in the tab and put the same in a folder named customUI. b) Rename your Word 2007 document to .zip. Add the above "customUI" folder to the zip file. c) Add the following relationship to the "_rels/rels" file in the .zip file :- <Relationship Type="http://schemas

Does anyone ever use the Ribbon Control? [closed]

旧城冷巷雨未停 提交于 2019-12-03 11:33:16
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. The ribbon control seems to be the rage now that Windows 7 is here. It occurred to me from this link for a ribbon control here on Codeplex ... What I want to know is, is there any real benefit in shifting the UI paradigm to use the Ribbon Control purely 'to

How to set text at the head of a RibbonApplicationMenu

江枫思渺然 提交于 2019-12-03 01:21:50
I'm trying to have text in the top level of a RibbonApplicationMenu (trying to the get the word "File" there similar to Word or Outlook). It seems the Microsoft.Windows.Controls.Ribbon.RibbonApplicationMenu http://msdn.microsoft.com/en-us/library/microsoft.windows.controls.ribbon.ribbonapplicationmenu.aspx supports a SmallImageSource but no text property. Setting the Label property doesn't work for this problem. xmlns:ribbon="clr-namespace:Microsoft.Windows.Controls.Ribbon;assembly=RibbonControlsLibrary" <ribbon:RibbonApplicationMenu Label="File"> <!--doesn't set the label --> </ribbon

Remove “Save & Send” from File menu in Excel 2010 using custom XML

夙愿已清 提交于 2019-12-02 12:03:34
Could someone please help me modify the following XML code (Office 2007) so that it works in Office 2010? I've included my XML from Office 2007 below: <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"> <ribbon> <officeMenu> <menu idMso="FileSendMenu" enabled="false"/> <menu idMso="FileEmailAsPdfEmailAttachment" enabled="false"/> <menu idMso="FileEmailAsXpsEmailAttachment" enabled="false"/> <menu idMso="FileSendAsAttachment" enabled="false"/> </officeMenu> </ribbon> I canNOT figure out why my schema isn't working. It doesn't help that I know nothing about XML and I'm just

Ribbon in WinForms C# .Net 4.0

半城伤御伤魂 提交于 2019-11-30 14:02:37
Does Microsoft have ribbon control for non-Office applications? If not is there any that are available for free? I like that component and would like to use it my WinForm 4.0 application. vcsjones Microsoft makes one for WPF that you can download here . There is an open source ribbon that should work for traditional WinForms. Microsoft have made a bit of a mess of providing a Ribbon control. Initially it had some very complex licence conditions , these may be relaxed now but the control is not as easily available as some of their recent NuGet deployed goodies. There seem to be more options in

Does Qt support ribbon control?

元气小坏坏 提交于 2019-11-28 21:12:55
Does Qt support ribbon control? John I want to share with you the link to site has published screenshots of their component Qtitan Ribbon for Qt. http://www.devmachines.com/qtitanribbon-overview.html One of their sample apps apparently has a ribbon, so it should be do-able. http://qt.nokia.com/images/products/vtk-designer-opengl-screenshot While there is no dedicated Ribbon widget in Qt, you can fashion something similar yourself. You could take a QTabWidget and put some buttons inside (and optionally style it to look a bit more like Microsoft's Ribbon). Depending on what you're trying to