Hello,
We are having some issues with some name spaces while migrating to 17.2
For example: AzureBusyAnimationPresenter used to be accessible using the ig name space. In 17.2 it is only accessible through igPrim
We had to add an extra name space to access it in 17.2 even though it is in the same dll.
Version 16.1
xmlns:ig="http://schemas.infragistics.com/xaml" xmlns:igDP="http://infragistics.com/DataPresenter" <Style TargetType="{x:Type ig:AzureBusyAnimationPresenter}" BasedOn="{StaticResource {x:Type ig:AzureBusyAnimationPresenter}}"> <Setter Property="Height" Value="75" /> </Style>
Version 17.2
xmlns:ig="http://schemas.infragistics.com/xaml" xmlns:igDP="http://infragistics.com/DataPresenter" xmlns:igPrim="http://schemas.infragistics.com/xaml/primitives" <Style TargetType="{x:Type igPrim:AzureBusyAnimationPresenter}" BasedOn="{StaticResource {x:Type igPrim:AzureBusyAnimationPresenter}}"> <Setter Property="Height" Value="75" /> </Style>
Hello User201,
This change of namespaces for the "Animation Presenters" related to the XamBusyIndicator is known. This actually happened in version 2017.1, and it was documented in the "Breaking Changes" topic that is published with each subsequent version of our online documentation. You can read about this article here: https://es.infragistics.com/help/wpf/breaking-changes-in-2017-volume-1#_Ref002. I would recommend reviewing these documents any time you upgrade between Infragistics versions.
Please let me know if you have any other questions or concerns on this matter.
Hello Andrew,
I have been looking for a detailed list of Infragistics XML namespace. I found this page but it is missing a lot of mappings.
Is there a list of all Infragistics Clr-namspaces mappings to XML namespaces ?
Thank you