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
990
Winforms Ultragrid alternate in WPF
posted

Hi All,

Do we have alternate of Winforms Ultragrid in WPF which allows to put XamDataGrid in TreeViewNodes.

Currenlty I am working by modifying TreeNode template of TreeView and put XamDataGrid in it, but this is very slow as compaired to winforms UltraGrid.

For my application we have almost more then 15-20 different Grids to show in TreeView.

I didn't found any such control in 10.3 license version of infragistics. and I am not sure of your later releases.

Please let me know if we have any better solution with us.

Thanks,

Parents
No Data
Reply
  • 12004
    posted

    Hello Anant,

    When using WPF the UltraGrid can be added from WindowsFormsHost. E.g.:

    xmlns:wf="clr-namespace:Infragistics.Win.UltraWinGrid;assembly=Infragistics2.Win.UltraWinGrid.v11.2"

    <WindowsFormsHost>
     <wf:UltraGrid x:Name="ultraGrid1" />
    </WindowsFormsHost>

    Let me know if I can provide any further assistance.

Children