Search code examples
wpfwpfdatagridxceed-datagridxceed

Removing the default text in Xceed datagrid


I am using the Codeplex verison of Xceed datagrid.
But while showing the grid in form, 'Powered by Xceed' text is coming in top right of datagrid.
enter image description here

Is it possible to remove this? How?


Solution

  • I tried this. It worked.

     <Style TargetType="{x:Type xcdg:HierarchicalGroupByControl}">
                <Setter Property="Visibility" Value="Collapsed"/>
            </Style>