I have a user control that i embed into a WPF application by doign this...
In the code between i create an Observable Collection and use this as the WorkLines itemssource.
this.workLine.ItemsSource =
My question is, how from 'WorkLine' code behind do I get the values in which this itemssource is made up off? I have bound the contents of workline to be the values of the itemssource though since this data changes I would like to iterate it in WorkLine to search for specific data.
foreach( string s in workline.itemsSource )
{
Do something;
}
Is this possible at all?
Thanks in advance
Urema.
personPosted Sep 3, 2009, 4:57 AM
Urema.
Furqan ZafarPosted Sep 2, 2009, 3:06 PM