WPF Combobox binding Question

Posted by ebattulga on Stack Overflow See other posts from Stack Overflow or by ebattulga
Published on 2010-04-05T14:33:29Z Indexed on 2010/04/05 15:03 UTC
Read the original article Hit count: 471

Filed under:
|
|

I have a 2 Table.

Product
ProductName
CategoryID

Category
ID
CategoryName

I'm filling combobox to table named 'category'.

Code

Product currentProduct=datacontext.products.FirstOrDefault();
this.datacontext=currentProduct;
combobox1.Itemssource=datacontext.categories;

XAML

<Textbox Text="{Binding Path=ProductName}"></Textbox>
<Combobox x:Name="combobox1" SelectedItem="Binding Path=CategoryID"></Combobox>

When click save button, I'm doing datacontext.SubmitChanges()

ProductName changed. But CategoryID not changed.

My target is when i select from combobox, selected category ID set to CategoryID of currentProduct. (like currentProduct.CategoryID=(Category as combobox1.SelectedItem).ID)

How to do is from xaml?

© Stack Overflow or respective owner

Related posts about xaml

Related posts about wpf