| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | 
							- <wpf:ThemableWindow x:Class="PRSDesktop.GlobalTokenWindow"
 
-         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:local="clr-namespace:PRSDesktop"
 
- 		xmlns:wpf="clr-namespace:InABox.Wpf;assembly=InABox.Wpf"
 
-         mc:Ignorable="d"
 
-         Title="Security Defaults" Height="800" Width="1400" WindowStartupLocation="CenterScreen">
 
-     <Grid>
 
-         <Grid.ColumnDefinitions>
 
-             <ColumnDefinition Width="Auto" />
 
-             <ColumnDefinition Width="*" />
 
-         </Grid.ColumnDefinitions>
 
-         <Grid.RowDefinitions>
 
-             <RowDefinition Height="*" />
 
-         </Grid.RowDefinitions>
 
-         <ListView Grid.Column="0" Grid.Row="0" x:Name="Groups" SelectionChanged="Groups_SelectionChanged"
 
-                   Margin="5,5,0,5" BorderBrush="Gray" BorderThickness="0.75" HorizontalAlignment="Stretch"
 
-                   Visibility="Collapsed">
 
-             <ListView.ItemTemplate>
 
-                 <DataTemplate>
 
-                     <Grid Margin="5,10,5,5" HorizontalAlignment="Stretch">
 
-                         <StackPanel Orientation="Vertical" HorizontalAlignment="Stretch">
 
-                             <Border Width="64" Height="64" CornerRadius="15" BorderBrush="Black" BorderThickness="1"
 
-                                     VerticalAlignment="Center" HorizontalAlignment="Center">
 
-                                 <Border.Background>
 
-                                     <ImageBrush ImageSource="{Binding Path=Item3}" Stretch="UniformToFill" />
 
-                                 </Border.Background>
 
-                             </Border>
 
-                             <TextBlock Height="Auto" TextWrapping="Wrap" TextAlignment="Center" Width="80"
 
-                                        Text="{Binding Item2}" />
 
-                         </StackPanel>
 
-                     </Grid>
 
-                 </DataTemplate>
 
-             </ListView.ItemTemplate>
 
-         </ListView>
 
-         <local:GlobalTokenGrid x:Name="Tokens" Grid.Row="0" Grid.Column="1" Margin="5" />
 
-     </Grid>
 
- </wpf:ThemableWindow>
 
 
  |