Busy status manager
<Grid Grid.Row="1" Grid.Column="0"
behaviors:BusyStatusManager.Content="Searching..."
behaviors:BusyStatusManager.Status="{Binding Path=IsBusy, Converter={converters:BooleanBusyStatusConverter}}">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<TextBox Text="{markup:EditorBinding Path=Query}"
Grid.Row="0"
Margin="0"
Height="23"
VerticalAlignment="Top"
HorizontalAlignment="Stretch"
behaviors:CueBannerService.CueBanner="Search..."
behaviors:TextBoxManager.Command="{markup:AutoCommandBinding Path=Search}">
</TextBox>
<ListView Grid.Row="1" ItemsSource="{Binding Path=Persons}" SelectedItem="{Binding Path=SelectedPerson}">
<ListView.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Path=FirstName}" />
<TextBlock Margin="5,0,0,0" Text="{Binding Path=LastName}" />
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</Grid>Last updated