I am using an editable ComboBox in wpf but when i try to set focus from C# code, it is only shows selection. but i want to go for edit option (cursor should display for user
You can try this code:
var textBox = (comboBox.Template.FindName("PART_EditableTextBox", comboBox) as TextBox); if (textBox != null) { textBox.Focus(); textBox.SelectionStart = textBox.Text.Length; }