Currently in XAML for the datagrid I have these set
EnableDataVirtualization="True" VirtualizingPanel.IsVirtualizing="True" VirtualizingPanel.VirtualizationMode="Standard"
However when I load the grid it still stops the UI from responding. How to I enable async loading of a grid so the UI is still responsive? I load my data Async, and the grid binds to the ObservableCollection like this ItemsSource="{Binding Widths, IsAsync=True}"