I have a Silverlight Page where i have the a button control and a Datagrid. The Click event on the Silverlight Page navigates to a Silverlight Child Window. The DataGrid on the Silverlight Page displays the Orders of all Customers. The Silverlight Child Window has a dataform and textfields and a combo box of customers. There is no issue with saving the data on the ChildWindow. The issue starts when i click OK on the ChildWindow. The datagrid on the Silverlight page is populated with the Orders info. One of the columns in the DataGrid is the CustomerID column. To make the user better understand whose order it is i decided to add a combo box to the datagridtemplatecolumn. The combobox binds perfectly to the CustomerDataSource. But for each order i want it to display the corresponding Customer Name. But this does not happen. How can i achieve this?
相关问题
- WPF ComboBox with custom dropdown width
- WPF DataGrid - row for new entry not visible
- AesManaged and RijndaelManaged
- How to delete row datagrid and update SQL database
- Accessing the WPF DataGrid “empty” or “rowcolumn”
相关文章
- Unreasonable WPF DataGrid Loading Time
- How to programmatically access a datagrid row deta
- Add custom tooltip to row in DataGrid
- How to disable the 'Select All' button of
- C# ComboBox in DropDownList style, how do I set th
- VBA - close/unwrap/retract a combobox list?
- DataGrid cell single click edit mode in wpf c#?
- Live streaming with silverlight 4
Here is my code to set the Combobox selectedvalue