Hi
The Ribbon control looks really good. It can save me a lot of time building a menu.
I am aware that it is still in the CTP version, can you provide a tentative time period of when this would be a full release.
Most importantly, are you planning to implement the Commanding feature for all the ribbon tools? My application uses MVVM and the workaround that needs to be put into place is time consuming.
Thanks.
Nrupal
Hi Georgi,
That does help. That solves my puzzle on implementing the MVVM with Ribbon. A few more functions to evaluate, but looks like Infragistics controls are the way to go with the next few projects.
Thank you for your time.
Hi,
The property name is "Commands" and it's actually a collection, so you could wire several commands to a Tool:
<ribbon:ButtonTool Caption="Button">
<ribbon:ButtonTool.Commands>
<test:MyCommandSource CommandType="DoAction"
EventName="Click" />
</ribbon:ButtonTool.Commands>
</ribbon:ButtonTool>
Hope that helps
Hi Steve
Thank you for the quick reply.
Aah, I do see the Commanding implemented in the RibbonTool base class. But for some strange reason visual studio doesn't recognise Command and breaks on it.
"The property 'Command' was not found in type 'ButtonTool'."
Am I missing any other reference or should I be using a XML namespace mapping?
PS: I am currently using the trial version. Sure that this shouldn't have anything to do with the problem.
Thank you.
HI Nrupal,
The Ribbon actually released earlier this week, in our 10.1 Release.
And all tools support our Commanding framework via their Commands property
Hope this helps,
-SteveZ