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