I had a Combobox template column in WPF 4 DataGrid. It's data source was in a different class libary named Common, the namespace is Common.ShareData, the list name is TestList. I use follow code to bind Common.ShareData.TestList to Combobox's ItemsSource:
<ComboBox IsEditable="True" ItemsSource="{Binding RelativeSource={RelativeSource AncestorType={x:Type common:SharedData}}, Path=TestList}" DisplayMemberPath="TestName" SelectedValuePath="TestId"></ComboBox>
And I add the reference for Common class libary like this:
xmlns:common="clr-namespace:Common;assembly=Common"
But when I running my application, the Binding looks not working.
How to bind a different namespace list to combobox in WPF 4 DataGrid?