Hi well Iam trying to use Auto Complete box in different way.
I have class Gender
Public class Gender
{
Public string ID;
Public string GenderName;
}
And I have collection of Gender GenderList
Now I want to use GenderName for display in AutoCompeteBox but on change I want to get the selected gender with ID and GenderName so it would help me to use for databinding.
Thanks