How can I change the automationID Property of the editable TextBox inside an editable ComboBox in XAML?
When I set the automationID on the ComboBox it does not affect the editable TextBox inside of it. How can I access the editable TextBox and change it through XAML?
My XAML ComboBox code:
<ComboBox Name="TestCombo"Grid.Column="1" Grid.Row="1" Grid.RowSpan="2" IsEnabled="{Binding IsEditable}" Visibility="{Binding ComboBoxVisible}" Text="{Binding Value,UpdateSourceTrigger=PropertyChanged}" IsEditable="true" LostKeyboardFocus="LostFocusEventHandler">