This may seem strange... but I'm wondering if there is anyway to make a combobox non selectable. So it displays as normal, except cannot be selected. I have 3 buttons underneath it, Edit, Cancel, Save. (Cancel + save obviously not enabled) The plan is so when user hits edit, they can change the items in the combo box.
I know .IsEnabled will do this, except it greys the control and makes it hard to read.
Will try to explain further the situation. I have two lists with related items. For example, (I know this doesn't quite work, but imagine as if car manufacturers could buy other manufacturers cars and then have them become theirs) Car manufactur column, and car type.
So we have (in 2 seperate listboxes)
Holden -> Commodore
Holden -> Astra
Ford -> Falcon
Now when one is selected, I programatically make its related partner selected, and then display both items in two Combo boxes. The combo box for manufacturer contains all the manufactuers and the box for the type contains all the differnet car types, so if e.g. Ford buys the Astra, I select Holden -> Astra, then click edit in the next view, change the manufacturer type combo to Ford then click save.
So the relationship is, a car can only have one car manufacturer, but a car manufacturer can have many cars. I want to be able to a) show the relationships b) edit the relationships and c) (but not so important) add new relationships if cars are added (this happens in a different screen however, dont worry about it)
User can add and delete companies and cars. A car can exist without a company and likewise with a manufacturer. Dont worry too much about the deleting implications here, just say the list stays the same.
Bad example but easier to explain than what im actually doing...
Maybe someone has a better idea how to set that up but at the end of the day still wondering if I can make the combobox like I want?
IsEnabled=false makes it too unreadable... IsReadOnly=true makes the text uneditable...
Thanks for your time