Since I am a beginner in WPF, I have a question which might be basic in nature.
I have a datagrid which has a combobox.
The xaml which I have written is:
<DataGridComboBoxColumn Header="ControlOption" Width="100"
SelectedItemBinding="{Binding Path=DataGridComboxBox_Control}">
<DataGridComboBoxColumn.ItemsSource>
<col:ArrayList>
<sys:String>Database1</sys:String>
<sys:String>DataBase2</sys:String>
</col:ArrayList>
</DataGridComboBoxColumn.ItemsSource>
</DataGridComboBoxColumn>
I have 3 values which should be there in the drop down of the comboBox. 1. WorkStream1 2. WorkStream2 3. WorkStream3
Now how do I write the codebehind for the ComboxBox. Please do give me pointers in this. :)
Very much appreciated.
Ashutosh