In Javafx for bidirectional binding a combobox selected item to an object property(attribute) simply I used :
linkComboBox.valueProperty().bindBidirectional(linkBean.linkTypeProperty());
Now I want to do this action in C# .net (windows form) can I do that as simple as javafx?
I have read questions about c# binding to object property, the problem is combo box data source must be a class while in my question combobox items are static and I just want to bidirectional bind selected item to a property of an object.