This is a migrated thread and some comments may be shown as answers.

BusyIndicator Not Visible

1 Answer 61 Views
BusyIndicator
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
slnee
Top achievements
Rank 1
slnee asked on 29 Oct 2014, 09:45 AM
hello,

I would like to make a busy indicator visible in the first plane of my Page.

Here below my code: the busy indicator is not visible

<phone:PhoneApplicationPage
    x:Class="TelerikWindowsPhoneApp12.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:telerikPrimitives="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Primitives"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="Portrait"  Orientation="Portrait"
    shell:SystemTray.IsVisible="True">

    <!--LayoutRoot is the root grid where all page content is placed-->
    <Grid x:Name="LayoutRoot" Background="Transparent">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>
        <!--TitlePanel contains the name of the application and page title-->
        <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
            <TextBlock x:Name="ApplicationTitle" Text="MY APPLICATION" Style="{StaticResource PhoneTextNormalStyle}"/>
            <TextBlock x:Name="PageTitle" Text="page name" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
        </StackPanel>

        <!--ContentPanel - place additional content here-->
        <telerikPrimitives:RadBusyIndicator
                                            x:Name="busyIndicator"
                                            AnimationStyle="AnimationStyle7" Content="" Foreground = "#b21c1c" Grid.Row="1" Grid.ColumnSpan="2" IsRunning="True" />
        <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0" Background="Green">
        
        </Grid>
    </Grid>
</phone:PhoneApplicationPage>

1 Answer, 1 is accepted

Sort by
0
Vladislav
Telerik team
answered on 29 Oct 2014, 12:45 PM
Hi slnee IT,

The RadBusyIndicator is actually visible, but the latest Grid (named "ContentPanel") actually covers it and it cannot be seen. Both the RadBusyIndicator and the Grid in question are located in the Grid.Row = 1.

Regards,
Vladislav
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
BusyIndicator
Asked by
slnee
Top achievements
Rank 1
Answers by
Vladislav
Telerik team
Share this question
or