Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
There is probably nothing wrong with the namespace in itself (this kind of thing is resolved at compilation time, if it does compile, you're good). There is probably something wrong with your bindnig itself. You should give us your Controls hierarchy and code for SharedData class so that we can help you. – Sisyphe Nov 22 '12 at 8:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.