client/src/Iri.Modernisation.Controls/View/NavigationBar/ConsultMenu.xaml
changeset 42 594fdedecf7f
parent 30 644e3cd48034
--- a/client/src/Iri.Modernisation.Controls/View/NavigationBar/ConsultMenu.xaml	Wed Feb 10 14:56:46 2010 +0100
+++ b/client/src/Iri.Modernisation.Controls/View/NavigationBar/ConsultMenu.xaml	Thu Feb 11 17:29:23 2010 +0100
@@ -41,14 +41,15 @@
 		<ListBox x:Name="ResultSearchList" Height="152" ItemsSource="{Binding VideoBooks}"  Margin="0,0,8,0">
             <ListBox.ItemTemplate>
                 <DataTemplate>
-                    <Grid>
-                        <TextBlock Text="{Binding Title}" Input:CommandService.Command="ClickBook" Input:CommandService.CommandParameter="{Binding}">
-                        
-                        </TextBlock>
-                        <ToolTipService.ToolTip>
-                            <TextBlock Text="{Binding Title}"/>
+                    <StackPanel Orientation="Horizontal" Background="Transparent" Input:CommandService.Command="ClickBook" Input:CommandService.CommandParameter="{Binding VideoBook}">
+                        <TextBlock Text="{Binding VideoBook.Title}" />
+                        <TextBlock Text="("/>
+						<TextBlock Text="{Binding DownloadState}"/>
+						<TextBlock Text=")"/>
+						<ToolTipService.ToolTip>
+                            <TextBlock Text="{Binding VideoBook.Title}"/>
                         </ToolTipService.ToolTip>
-                    </Grid>
+                    </StackPanel>
                 </DataTemplate>
             </ListBox.ItemTemplate>