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 Reply Children
No Data