Why are the ComboBox item's just a path? When I start the appl. and want to select an item from the combobox, the items are just a path. It's every time the same path, the path to the class.
Here the Code where i give the combobox the items:
drpdefContVal.Items.AddRange(Controllertype.GetAll().ToArray<Controllertype>());
drpdefContVal.ValueMember = ((controllerType = Controllertype.GetByID(CoreClass.Settings.dbDEFAULTCONTROLLERTYPEID)) != null) ? controllerType.dbTitle : "";