Downloaded and installed Extended WPF Toolkit - 2.1.0
Added a reference
I can see it object explorer
I get error below on AutoSelectTextBox not found.
<Window x:Class="ComboBoxDynamic.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
Title="MainWindow" Height="350" Width="525">
<Grid>
<StackPanel>
<StackPanel.Resources>
<Style TargetType="{x:Type xctk:AutoSelectTextBox}">
<Setter Property="Margin" Value="5"/>
<Setter Property="AutoSelectBehavior" Value="{Binding SelectedItem, ElementName=_autoSelectBehavior}"/>
<Setter Property="AutoMoveFocus" Value="{Binding IsChecked, ElementName=_autoMoveFocus}"/>
</Style>
</StackPanel.Resources>
</StackPanel>
</Grid>
</Window>
But in code behind I can access.
Xceed.Wpf.Toolkit.AutoSelectTextBox astb = new AutoSelectTextBox();