| 1234567891011121314151617181920212223242526272829303132333435 | 
							- <wpf:ThemableWindow x:Class="InABox.WPF.DictionaryComboEdit"
 
-         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 
-         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 
-         xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
 
-         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
 
-         xmlns:wpf="clr-namespace:InABox.Wpf"
 
-         mc:Ignorable="d"
 
-         Title="Value Selection" Height="120" Width="500">
 
-     <Grid>
 
-         <Grid.RowDefinitions>
 
-             <RowDefinition Height="*" />
 
-             <RowDefinition Height="40" />
 
-         </Grid.RowDefinitions>
 
-         <Grid.ColumnDefinitions>
 
-             <ColumnDefinition Width="Auto" />
 
-             <ColumnDefinition Width="*" />
 
-             <ColumnDefinition Width="80" />
 
-             <ColumnDefinition Width="80" />
 
-         </Grid.ColumnDefinitions>
 
-         <Label x:Name="Label" Grid.Row="0" Grid.Column="0" Margin="10,0,10,0" HorizontalAlignment="Left"
 
-                HorizontalContentAlignment="Left" VerticalAlignment="Stretch" VerticalContentAlignment="Center"
 
-                Content="Select Value" />
 
-         <ItemsControl Grid.Row="0" Grid.Column="1">
 
-             <ItemsControl.ItemTemplate>
 
-                 <DataTemplate>
 
-                     
 
-                 </DataTemplate>
 
-             </ItemsControl.ItemTemplate>
 
-         </ItemsControl>
 
-         <ComboBox Visibility="Collapsed" x:Name="Combo" Grid.Row="0" Grid.Column="1" Margin="0,0,5,0" Grid.ColumnSpan="3"
 
-                   HorizontalAlignment="Stretch" VerticalAlignment="Center" SelectionChanged="Combo_SelectionChanged" />
 
-         <Button x:Name="OK" Grid.Row="1" Grid.Column="2" Margin="5" Content="OK" Click="OK_Click" IsEnabled="False" />
 
-         <Button x:Name="Cancel" Grid.Row="1" Grid.Column="3" Margin="5" Content="Cancel" Click="Cancel_Click" />
 
-     </Grid>
 
- </wpf:ThemableWindow>
 
 
  |