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
115
Is there any way to remove the <<>> indicators we get when we drag drop columns ?
posted

Is there any way to remove the << >> indicators we get when we drag drop columns ?

Parents
No Data
Reply
  • 138253
    Offline posted

    Hello,

     

    It has been a while since you have made your post, in case you still need support I will be glad to assist you further. I suppose the other community members can benefit from this answer as well. I have been looking through your post and I suggest you add the following Style in the App.xaml file Resources in order to remove the drop indicators of the XamDataGrid

     

    <Style TargetType="{x:Type igWindows:DropIndicator}">
        <Setter Property="Template" >
            <Setter.Value>
                <ControlTemplate/>
            </Setter.Value>
        </Setter>
    </Style>
    

     

    Feel free to write me if you have further questions.

Children
No Data