> For the complete documentation index, see [llms.txt](https://docs.radicalframework.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.radicalframework.com/release-2/behaviors/overlay-adorner/busy-status-manager.md).

# Busy status manager

One of the built-in [overlay adorners](/release-2/behaviors/overlay-adorner.md) that Radical offers is the `BusyStatusManager` that allows us to put some blocking content on top of another xaml element and control its visibility via the IsBusy attached property:

```markup
<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>
```

In the previous example we are using the BusyStatusManager to put the “searching…” banner on top of a UI element whose role is to provide search capabilities, whenever from the view model we change the value of the IsBusy property to true the content of the Content property is displayed, the underlying element IsEnabled property is set to false and a semi-transparent grey background is drawn.

The important thing is that the Content property type is System.Object, this, inline with the WPF default behavior, allows us to put any content as the busy content of the BusyStatusManager.

The attached property is defined in the `http://schemas.radicalframework.com/windows/behaviors` xml namespace, and the converter is defined in the `http://schemas.radicalframework.com/windows/converters` xml namespace.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.radicalframework.com/release-2/behaviors/overlay-adorner/busy-status-manager.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
