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
Georgi Angelchov"] Attached is a simple sample that works for me. If Execute is never called, you most probably don't have an ICommandTarget object on the page that supports the command you're trying to execute. Hope that helps,
Attached is a simple sample that works for me.
If Execute is never called, you most probably don't have an ICommandTarget object on the page that supports the command you're trying to execute.
Hope that helps,
How do I get this to work with a DelegateCommand<T> with PRISM? Or do I have to wait until Silverlight 4?
Hi Georgi
Thanks for the sample. I'm sure it will help others in the future.
You're quite correct. I let VS implement the interface and I never even looked at the code, I just changed the returns.
Kr
Robin
lordrob said: Hi Georgi Would it possible to include a sample of this working? None of LOB samples actually show this working. I've read the article "Custom Commands with Infragistics Silverlight Commanding Framework" and have implemented it into my Prism application but the Execute is never called. Thanks Robin
Would it possible to include a sample of this working? None of LOB samples actually show this working.
I've read the article "Custom Commands with Infragistics Silverlight Commanding Framework" and have implemented it into my Prism application but the Execute is never called.
Thanks Robin
Also is it possible to use an EventTrigger using System.Windows.Interactivity?
<igRibbon:ButtonTool Caption="Test" MaximumSize="ImageAndTextLarge" LargeImage="Images/Purchase Add64.png"> <i:Interaction.Triggers> <i:EventTrigger EventName="Click"> <cmd:EventToCommand Command="{Binding ViewOrdersCommand, Mode=OneWay}"/> </i:EventTrigger> </i:Interaction.Triggers></igRibbon:ButtonTool>
Since I'm using MVVM Light from Laurent Bugnion, I would like to use his EventToCommand.
Kr Robin