-4

我的 Xaml 代码:

<telerik:RadBusyIndicator Name="RadBusyIndicator" IsBusy="True"
                          Margin="34,32,58,36" Visibility="Collapsed"
                          Grid.Row="3" Grid.RowSpan="4" Grid.Column="2">
</telerik:RadBusyIndicator>

在单击导入按钮时,我有一个名为“导入”的按钮名称,使繁忙指示器为

RadBusyIndicator.visibility=visibility.visible;

忙碌指示器不可见是我的代码错误吗?

4

1 回答 1

0

您是否将其 IsBusy 设置为 true。你也在后台线程上运行你的代码。

Busy 指示器应包含在 IsBusy 为 true 时将被禁用的控件。通常制作 BusyWindow 的整个窗口内容。

<telerik:RadBusyIndicator Name="RadBusyIndicator" IsBusy="True" Margin="34,32,58,36" Grid.RowSpan="4" Visibility="Collapsed" Grid.Row="3" Grid.Column="2">

<Button Grid.Row="6" Grid.Column="2" Content="Import" Width="120" Height="30" IsEnabled="False" VerticalAlignment="Center" HorizontalAlignment="Center" Name="btnImport" Click="btnImport_Click" Margin="76,5,79,5"></Button> 

</telerik:RadBusyIndicator>
于 2012-07-30T12:25:05.800 回答