Reload datagrid on source change - c#

I have a WPF C# datagrid that is read only, its contents are loaded from an external XML file and other forms manipulate the XML file by adding, editing and removing data.
I would like the datagrid to reload when a change is made, however there doesn't appear to be an easy way of doing this.
I intend on putting a 'refresh' of some sort when the 'editing' form closes.
I have tried datagrid.items.refresh() without success among a few other bits of failed code. (learning C#/WPF)
How am I supposed to do this?
XAML:
<Grid.DataContext>
<XmlDataProvider Source="E:\downloader\downloadConfig.xml" XPath="/download/downloadItem"></XmlDataProvider>
</Grid.DataContext>
<DataGrid x:Name="downloadList" Height="191" VerticalAlignment="Top" ItemsSource="{Binding}" AutoGenerateColumns="False" AlternatingRowBackground="Gainsboro" IsReadOnly="True" DataContext="{Binding}" IsSynchronizedWithCurrentItem="True">
<DataGrid.Columns>
<DataGridTextColumn Header="ID" Binding="{Binding XPath=ID}" Width="50"></DataGridTextColumn>
<DataGridTextColumn Header="Name" Binding="{Binding XPath=Name}" Width="350"></DataGridTextColumn>
<DataGridTextColumn Header="Status" Binding="{Binding XPath=Status}" Width="100"></DataGridTextColumn>
</DataGrid.Columns>
</DataGrid>

Bind the DataGrid to a collection that implements the INotifyCollectionChanged interface. Objects that implement this interface will raise events when their contents change, and DataGrid will listen for these events and update itself accordingly.
There is a built-in generic class, ObservableCollection, which takes care of all of this for you. It's usually easiest to just use it. It does have one gotcha, though, which is that it can only be modified from the main thread. If you need to modify it from another thread, use Dispatcher.Invoke (or BeginInvoke) to avoid getting exceptions.
Note that these only notify of 'row-level' changes - the addition, removal, replacement of entire objects from the collection. To have the DataGrid also update itself when objects within the collection change, implement INotifyPropertyChanged on them.
I realize this means a bunch of extra coding since you'll need to implement classes to go between the XML and the collection, but it is the preferred option. On the upside, it should perform better. The DataGrid will be able to only update the rows it needs to update, rather than completely redrawing itself (which can be an expensive operation in WPF).

Related

How to display a List of Strings as a DataGrid (table) in XAML and C#

I've been a long time lurker on SO and have only recently decided to set up an account. I've been spending quite a lot of hours trying to solve this problem I've been having without asking but I here it is.
What I'm trying to accomplish:
I have a list of strings, e.g: Mango, Banana, Melon (let's call it fruits) and I want to display it as a table in XAML (WPF), where it appears as row values on the left side, and the right side will be combo boxes that will allow users to pick a value. I'm currently stuck on the displaying part of this problem. I decided to use a DataGrid to display the list, and the code behind will do the data bindings.
Here's the XAML part of it:
<DataGrid x:Name="FruitDataGrid" Height="265" VerticalAlignment="Center" Margin="-7,8,-2,-6" HorizontalAlignment="Left" Width="1188" AutoGenerateColumns="False">
<!-- If AutoGenerateColumns was true only the length is displayed.-->
<DataGrid.Columns>
<DataGridTextColumn x:Name="fruitsDisplay" Header="Fruits" MinWidth="450" IsReadOnly="True" />
<DataGridComboBoxColumn Header="Number of Boxes" MinWidth ="200" CanUserResize="True" Width="*"></DataGridComboBoxColumn>
</DataGrid.Columns>
Code Behind so far has been really simple, and after many attempts this is the most recent one.
private void populateFruitList()
{
FruitDataGrid.DataContext = fruitDataTable;
//Binds a datatable instance to the datagrid, does not display anything.
}
What I've been attempting:
Turn the List of Strings into an Observable Collection, or Enumerable, and do FruitDataGrid.itemsource = fruitsObservable;
The above method works, except that it will only display the length of each string value (if autogeneratecolumns is true), which is not what I want. If autogeneratecolumns was false then I can see the rows being shown, but not the string values.
I also tried using DataView or DataGridView but I failed to define it in the XAML, VS2012 says that there isn't such a thing.
I've been trying to do data binding as well as the MSDN Article says, but VS2012 never manages to bind to the list properly.
I then attempted to change my list into a datatable and [use a datagridview as specified here but again the XAML tells me it is not a valid class][2]. I am also aware of the performance impact datagridview might have but at this point I just want to display a table really.
I've also seen that some tutorials use a DataGrid.datasource method but that isn't in the DataGrid I want, I think it's a different class? (the DataGrid I am attempting to use is System.Windows.Controls.DataGrid, and the other one is in Windows Forms [As shown here][3])
Thanks again for taking the time to look into this.
EDIT
Trying to bind to the list in XAML this way:
<DataGrid x:Name="FruitDataGrid" Height="265" VerticalAlignment="Center" Margin="-7,8,-2,-6" HorizontalAlignment="Left" Width="1188" AutoGenerateColumns="False" ItemsSource="fruitDataList">
I get the error in XAML "The type converter for IEnumerable does not support converting from a string" which I think is because I'm doing it wrong. The table now shows a lot of empty rows though.
Trying ItemSource="{Binding fruitDataList}" (where fruitDataList is a List) yields a blank table, and an error in VS for BindingExpression path error.
To sum up what the previous issue was, thanks to Muds, and hours of trying, the Binding in the XAML was not properly done.
In FruitDataGrid, this property should be written as ItemSource="{Binding}" this tells the XAML code to bind to whatever object the DataContext is assigned to in the code behind.
After that, within the DataGrid.Column, this property is needed.
Binding="{Binding Path=.}"
It had to be exactly that for me. lack of the dot or not enclosing it in quotes will not display the fruits.
Thus, for clarity:
In the XAML:
<DataGrid x:Name="FruitDataGrid"
Height="265" VerticalAlignment="Center" Margin="-7,8,-2,-6"
HorizontalAlignment="Left" Width="1188"
AutoGenerateColumns="False"
ItemSource="{Binding}">
<!-- If AutoGenerateColumns was true only the length is displayed.-->
<DataGrid.Columns>
<DataGridTextColumn
x:Name="fruitsDisplay"
Header="Fruits" MinWidth="450"
IsReadOnly="True"
Binding="{Binding Path=.}"/> <!--Exactly like this -->
<DataGridComboBoxColumn
Header="Number of Boxes"
MinWidth ="200"
CanUserResize="True" Width="*" />
</DataGrid.Columns>
And then in the codebehind (filename.xaml.xs)
//Anywhere you plan to bind the list in my case FruitList
List<string> fruitList = new List<string>();
fruitList.add("Melon");
fruitList.add("Mango");
fruitList.add("Banana");
FruitDataGrid.DataContext = fruitList;
And now you'll have a very nice list displayed as a table. What killed 2 days of my time was the binding path should have a . (dot) right there, and I was binding to a string instead of an object (you literally bind to a string "fruitList" when you do Binding = {"fruitList"}. This amateur mistake stems from me insufficiently self-learning XAML.
Thanks again, Muds. I'll select yours as the answer because it helped me, and it feels weird accepting my own answer.
Considering your binding is set to your viewmodel correctly.. do this
ItemsSource="{Binding fruitDataList}"
then
<DataGrid.Columns>
<DataGridTextColumn
x:Name="fruitsDisplay"
Binding="{Binding Path=FRUITS_PROPERTY_NAME_IN_COLLECTION}"
Header="Fruits"
MinWidth="450"
IsReadOnly="True" />
<DataGridComboBoxColumn
ItemsSource="{Binding TO_List_of_Numbers}"
Header="Number of Boxes"
MinWidth ="200"
CanUserResize="True" Width="*"></DataGridComboBoxColumn>

how to use as source the first element of the main source?

I have a dataGrid that binding the itemSource. This itemSource has a collection of elements (related entities for a weak relationship)that for design has only one element.
I would like to show in the dataGrid the properties of this related entities, so I I am trying this binding:
<DataGridTextColumn Header="IDRelatedEntity" Binding="{Binding RelatedEntities.ElementAt(0).IRelatedEntity, Mode=TwoWay}" />
But this show nothing.
I know that I could use a converter for this, but I would like to avoid the use of a converter for this, I guess that it would be a simple way to do that.
Thanks.
You're almost there. Use this:
<DataGridTextColumn Header="IDRelatedEntity" Binding="{Binding RelatedEntities[0].IRelatedEntity, Mode=TwoWay}" />

is it possible to bind a datagrid to a object

I would like to bind a DataGrid to an object, and not to a collection of objects,
My scenario is,
I have a single record with a few columns in the database that the user will keep updating,
and for UI design purposes we would like the user to update it through a DataGrid with a single row. As a work around, I created an ObserverbaleCollection and added that record,
but I would like to do it the right way so please if someone could guide me.
Thanks
p.s.
as requested Below
here his the xaml for the datagrid i tried
<DataGrid CanUserAddRows="False" IsReadOnly="False" AutoGenerateColumns="False" ItemsSource="{Binding FacilityDefaults}">
<DataGrid.Columns>
<DataGridTextColumn Header="Price " Binding="{Binding Price,UpdateSourceTrigger=LostFocus}"/>
<DataGridTextColumn Header="Default Temperature" Binding="{Binding DefaultTemperature,UpdateSourceTrigger=LostFocus}"/>
</DataGrid.Columns>
</DataGrid>`
Using a Datagrid as an edit mechanism for a single record seems like the wrong choice in the first place. A Datagrid is made to work with a collection of items not really a single item. But if you insist on using it in this manner, then binding to a collection with just your one record in it is the simplest way to make it work. A DataGrid's ItemsSource expects an IEnumerable (MSDN), so binding it to a single object would be awkward to say the least.

DataGrid UI virtualization

i have a DataGrid. And a bind a List<> to it and add at runtime in the code a few columns. After adding this columns the vertical scrolling isn't very good. The added columns in code are dynamic created, i think between 10 - 50. And there are about 140 rows. How can i fix it?
I read something about ui virtualization, but i dont understand how use it on a DataGrid?
Can someone help me to finde a solution?
Thanks....
You need a datagrid that supports UI virtualization for columns. I don't believe the free Microsoft Silverlight datagrid supports that.
Not sure if there's a solution for that, but I do want to point out that we sell a datagrid for Silverlight at Xceed that supports it.
Link to this solution: http://xceed.com/grid_silverlight_intro.html
You can set the width of each individual column, and you can also set some columns to occupy the remaining available space, example:
<DataGrid>
<DataGrid.Columns>
<DataGridTextColumn Width="100"/>
<DataGridCheckBoxColumn Width="Auto" />
<DataGridTextColumn Width="*"/>
</DataGrid.Columns>
</DataGrid>

Listview Binding

xaml code
<ListView Name="lvw" VirtualizingStackPanel.IsVirtualizing="True" ItemsSource="{Binding Source={StaticResource MyList}}" >
<ListView.View>
<GridView AllowsColumnReorder="true" VirtualizingStackPanel.IsVirtualizing="True" >
<GridViewColumn x:Name="MiaCode" DisplayMemberBinding="{Binding Path=MIACODE}" Header="code" Width="80" />
<GridViewColumn x:Name="MiaName" DisplayMemberBinding="{Binding Path=MIANAME}" Header="name" Width="270"/>
</GridView>
</ListView.View>
</ListView>
//Binding Data count is over 10000
even though I set the property [VirtualizingStackPanel.IsVirtualizing="True"],
it takes too long to display data.
is there anything wrong in my code??
Is MyList a static data? you can use asynchronous binding by setting IsAsync property Binding.IsAsync Property or asynchronous data loading see ObjectDataProvider.IsAsynchronous Property,or develop some paging mechanism VirtualizingStackPanel.IsVirtualizing = "true" is not speeding up data loading time, it just doesn't create UI elements that are not visible Hope this helps
Confirming the correctness of arsenmkrt's reply.
A virtualized items source is generally pretty fast as long as it's not waiting for the underlying data to load.
If you get no joy, here are some more considerations:
Try pre-loading/caching your data if possible.
Double check that the property getters for MIACODE and MIANAME aren't performing CPU instensive work, and aren't creating any side effects.
Use Linq to page the in-bound data.
From experience, though, I can confirm that the GridView on a virtualized listview is amply capable of displaying thousands of items without severe performance panalties. Hope this helps you.
Oh... just spotted that you're binding to a static resource....
If you are creating an explicit CollectionViewSource resource for grouping and sorting your items, take care to note that the by-property sorting mechanism of the CollectionView is known to be slow.
If this scenario describes what you're doing, try using a customer sort filter with the collection view (which is considerably faster), or better yet retrieve your data pre-sorted the way it needs to be.
Broadly speaking, you can only rely on the based sorting of CollectionView up to a few thousand items before the sorting time shows it's poorer performance.

Categories