I have my Combobox
which I need to set from another class, so I am trying to set the value within my public property. This is what I have so far, however the combo box is not populating.
public string Title
{
set
{
_Title = value;
cmb_Title.Text = value;
}
get
{
return _Title;
}
}
I have also tried cmb_Title.selectedText = value
, Index and all that i can think but I'm not to sure if its because I am setting it with in my property.
Any ideas would be much appreciated.