or
SelectedItem="{x:Null}" SelectionMode="Single" set on the grid.
Now, we are binding the grid programmatically. But all rows and cells are immediately selected, which is not what I want.
The second issue is that when I finally clear them through filters, when I do select a row, it will only allow me to select one row.
Which is fine, but I can't deselect that row and choose another.
Am I missing something?
Thanks
Travis
IsVisible="False" in xaml file. so I have 2 doubts.. 1)How to export all columns which are bind to grid irrespective of visibility. 2)I have a Ilist which is datasource of gribView.is it possible to export those list to different files ? the following was sample code...using (Stream stream = dialog.OpenFile())Regards Naresh
{
GridViewExportOptions exportOptions = new GridViewExportOptions();
exportOptions.Format = format;
exportOptions.ShowColumnFooters = true;
exportOptions.ShowColumnHeaders = true;
grdView.Export(stream, exportOptions);
}