ComboBox WPF Databinding to a DataView
- by Oleg
Hello Everyone!
Lets say I have one ComboBox and 2 TextBox items on my GUI. And I have one DataView with data (City, PostalCode, Street, ID). While initializing the whole thing I fill my DataView with some data :)
City 1, 11111, Street 1, 1
City 1, 22222, Street 2, 2
City 1, 33333, Street 3, 3
Now I want to bind this to my ComboBox. DataView is…