I have a WPF datagrid with the item source set to an ObservableCollection of dynamic. The collection was populated as follows.
private ObservableCollection<dynamic> BuildDynamicVehicleTypeView()
{
try
{
dynamic expando = new ExpandoObject();
var dictionary = expando as IDictionary<String, object>;
var dynamicView = new ObservableCollection<dynamic>();
VehicleTypes.ForEach(vehicleType =>
{
dictionary["VehicleType"] = vehicleType;
Configurations.ForEach(config=>
{
dictionary[config.Description] =
new ConfigurationItem
{
Configuration= config,
Image = new byte[] { },
};
});
dynamicView.Add(expando);
});
return dynamicView;
}
catch (Exception ex)
{
Messenger.Default.Send(ex);
}
return null;
}
I basically have a Collection of Expando objects where the number and name of properties for each expando object is not known until runtime.
The code for generating my Grid looks like this.
var rows = dgVehicleTypeView.ItemsSource.OfType<IDictionary<string, object>>();
var columns = rows.SelectMany(a => a).Distinct();
columns.ForEach(x =>
{
if (x.Value is ConfigurationItem)
{
var col = new DataGridTemplateColumn()
{
Header = (x.Value as ConfigurationItem).Configuration.Description,
CellEditingTemplate = FindResource("popUpDataTemplate") as DataTemplate,
CellTemplate = FindResource("imageDataTemplate") as DataTemplate
};
dgVehicleTypeView.Columns.Add(col);
}
else
{
var col = new DataGridTextColumn()
{
Header = x.Key,
Binding = new Binding { Path = new PropertyPath("VehicleType.Description") }
};
dgVehicleTypeView.Columns.Add(col);
}
});
The CellEditingTemplate works perfect as i have defined the DataTemplate in the XAML.
<DataTemplate x:Key="popUpDataTemplate">
<Popup IsOpen="{Binding IsOpen,UpdateSourceTrigger=PropertyChanged}" Height="300" Width="300">
<local:ImageUploadControl></local:ImageUploadControl>
</Popup>
</DataTemplate>
My problem is the CellTemplate.
<DataTemplate x:Key="imageDataTemplate">
<Image Source="{Binding Path=UnknownPropertyName.Image,Converter={StaticResource imgConverter},Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" Stretch="Uniform" />
</DataTemplate>
Here i cannot specify the name of the property as I will not know it at design time, so i just called it UnknownPropertyName. How do I dynamically specify the binding path of the unknown Property as soon as I resolve the name of the property at runtime either in XAML or in the code behind?