The code for the multi-pane selector is to be added in the navigator definition section. In this example, we're adding it to the Ted4Articles section. The related part is burried under DockPanel Name="MainContainer" > Grid Name=MainGrid" > Expander Name="LeftExpander" > l:NavigatorControl...> TabItem... > Grid Name...> Expander... > Expander.Header and it's to be added after l:SavedSearchControl.
To find quickly all multi-pane selectors, look for <ComboBox name. in all xxxx*TABITEMS.XML files.
The exact position is marked with the red rectangle. On the figure, the code is already added. See below for the code content:

Code content
<ComboBox
Name="ArticleSearchIndex"
Grid.Column="1"
ToolTip="Search Type"
HorizontalAlignment="Right"
Margin="2,2,30,2"
SelectedValue="{Binding Path=(l:ShellData.ShellData).SearchCriteria[ArticleSearch].SearchName, RelativeSource={RelativeSource Self}}">
<sys:String xmlns:sys="clr-namespace:System;assembly=mscorlib">Basic</sys:String>
<sys:String xmlns:sys="clr-namespace:System;assembly=mscorlib">Options</sys:String>
</ComboBox>
Some comment about code
•The name of the combobox is arbitrary, but it has to be unique among identifiers of that section. •The above code assumes the button appears in the second column of the local grid, thus Grid.Column="1" - don't forget the counter starts at 0, thus, the first column is "0" and the second column is "1". •The search identifier is 'ArticleSearch' (shown as bold in the SelectedValue="... line.). Enter the name defined as 'Name' property of the 'SearchCriteria' class in the 'ShellData' section close to the beginning of the entire main tab / navigators definition:
<l:ShellData.ShellData> <l:ShellData>
<l:ShellData.SearchCriteria>
<l:SearchCriteria Name="ArticleSearch"
BaseQueryName="ArticlePicker"
SearchName="Basic"
AutoApply="False"
/>
•Names of search panes in the <sys:String... lines have to correspond to the <searchObjectUI names used in the related section of the xxx_Config.xml. •The name of the default search pane in the 'ShellData' section, under 'SearchName' property of the 'SearchCriteria' class has to be one of the <searchObjectUI names used in the related section of the xxx_Config.xml |