First of all, sorry for my English...
I have something like this:
public class MyClass
{
private MyOtherClass _other;
public MyOtherClass Other
{
get { return _other; }
set { _other = value; }
}
}
现在......是:
。
I have two WCF services... one for everything related with MyClass, and the second one for everything related with MyOtherClass, so... I fill the combo with a List of MyOtherClass, but I have to set the SelectedItem from the property on MyClass, and the references of those classes are not the same.
Please, I need help!
thanks!