I have a long time processing operation, and for that it has to be done in the backGround, But the problem is:
- When I create the user control, and then add it to the UI, (listView) control, WPF doesn't show the UC (user control), but the listView seems to be populated withe the same number of UC i created.
I used the backgroundWorker, then i used the Dispatcher of the listView, then the main Dispatcher, but all with the same problem
i wonder if i can use the UIThread for that, but i dont know how.
My code is:
private void btn_click(object sender, System.Windows.RoutedEventArgs e)
{
string path = fileSourcesCombo.SelectedItem.ToString();
converter = getConverter(path);
this.Dispatcher.BeginInvoke(new Action(delegate()
{
System.Data.DataTable dataTable = converter.getDataTable();
dataGrid.Dispatcher.Invoke(new Action(delegate()
{
dataGrid.ItemsSource = dataTable.DefaultView;
}
));
List<MyAttribute> attributes = converter.attributes;
foreach (MyAttribute attribute in attributes)
{
string name = attribute.name;
string type = attribute.type;
CustomAttribute customAtt = new CustomAttribute(name, type);
ListViewControl.Dispatcher. Invoke(new Action(delegate() { ListViewControl.Items.Add(customAtt); }));
}
}
),System.Windows.Threading.DispatcherPriority.Background);
}
- Converter.getDataTable() takes long time.
- dataGrid.Dispatcer.Invoke works properly, because it updates and exciting control.
- ListViewControl.Dispatcher doesn't seem to work properly, neither this.Dispatcher
as i said before there is no compiling error generated, it's just that the list view seems to be populated with empty items on all of the method i tried.
EDIT :
when i changed the ListView into a ListItem it worked, but i dont know why?? any how i still would like to use the listView control instead..
This is the Xaml code where it works:
<Grid Margin="8,0">
<ListView x:Name="testpanel" Margin="8" BorderThickness="0" DisplayMemberPath="" Style="{DynamicResource SimpleListBox}" ItemContainerStyle="{DynamicResource SimpleListBoxItem}">
</ListView>
</Grid>
if i remover the DynemicResource from : ItemContainerStyle , it doesn't work