This may be something covered in C# 101 but I haven\'t been able to find an easy to understand answer to this question anywhere on google or stack overflow. Is there a bett
On load events put
DependencyPropertyDescriptor dpd = DependencyPropertyDescriptor.FromProperty(ComboBox.TextProperty, typeof(ComboBox));
dpd.AddValueChanged(cmbChungChi, OnTextChanged);
And get text via funtion
private void OnTextChanged(object sender, EventArgs args)
{
txtName.Text = cmbChungChi.Text;
}
Good luck.