
Hi,
I have a problem serialize/deserialize the QAT if it contains our own commands (inherited from RoutedUICommand) and I suspect there is (in part at least) a namespace problem.
This is what a serialized command looks likeit looks like it lacks some things, I did a test editing the xml before starting the app as such:
and also included our namespace:
and it worked fine DeSerializing this into the ribbon.
Any ideas about this?
Regards
/Magnus
I have a problem serialize/deserialize the QAT if it contains our own commands (inherited from RoutedUICommand) and I suspect there is (in part at least) a namespace problem.
This is what a serialized command looks like
<RibbonControlPathItem.Instance>
<ribbon:Button Context="QuickAccessToolBarItem" Id="New" VariantSize="Small">
<ribbon:Button.Command>
<av:RoutedUICommand Text="_Ny" />
</ribbon:Button.Command>
</ribbon:Button>
</RibbonControlPathItem.Instance>
<RibbonControlPathItem.Instance>
<ribbon:Button Command="f:FastNetCommands.New" Context="QuickAccessToolBarItem" Id="New" VariantSize="Small">
</ribbon:Button>
</RibbonControlPathItem.Instance>
xmlns:f="http://schemas.agresso.se/FastNet"
Any ideas about this?
Regards
/Magnus