Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1435
Infragistics name space issue
posted

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>

Parents
No Data
Reply
  • 34810
    Verified Answer
    Offline posted

    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://ko.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.

Children