Hello Everyone, I am using C#. I have a BrightIdeasSoftware.TreeListView in a Windows Forms application. I want to do: 1- Add a combobox (dropdownlist) in one of the column of that TreeListView and show a list of strings in that. The list of string will already have the associated object(say User) property (say username) value. 2- When user selects a string from that drop down, I want to associate the selected item's text of combobox with a property (say username) of model Object(say User). How can...