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

TileView in BusyIndicator

3 Answers 100 Views
BusyIndicator
This is a migrated thread and some comments may be shown as answers.
Serge ANTONENKO
Top achievements
Rank 1
Serge ANTONENKO asked on 23 Jun 2010, 10:02 AM
Hello Telerik,

I'm trying to put an TileView in a BusyIndicator but the tileview doesn't appear.

Do you have a sample code to do this ?

Thank you.

3 Answers, 1 is accepted

Sort by
0
Teodor
Telerik team
answered on 25 Jun 2010, 11:49 AM
Hi Serge ANTONENKO,

Thank you for contacting us.

Please find attached a project illustrating how a tile view can be placed within a RadBusyIndicator. Hope it helps.

Let us know in case you need assistance in the future.

All the best,
Teodor
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Serge ANTONENKO
Top achievements
Rank 1
answered on 25 Jun 2010, 01:37 PM

Hi,

Ok, but you specify Width and Height of Window and TileView.
 
I need to use "auto" for Window and "Stretch" for both horizontal and vertical alignement for TileView.

In this case, BusyIndicator doesn't work.

Best regards.
0
Teodor
Telerik team
answered on 28 Jun 2010, 04:51 PM
Hello Serge ANTONENKO,

Thank you for your reply.

Setting the properties HorizontalContentAlignment="Stretch" and VerticalContentAlignment="Stretch" of the RadBusyIndicator worked on our side with the settings you like:

<Window
    xmlns:telerikNavigation="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation"
    x:Class="WpfApplication2.MainWindow"
    x:Name="Window"
    Title="MainWindow"
    UseLayoutRounding="True"
    Width="Auto" Height="Auto">
 
    <Grid x:Name="LayoutRoot">
        <Grid.RowDefinitions>
            <RowDefinition Height="*"/>
            <RowDefinition Height="50"/>
        </Grid.RowDefinitions>
        <telerik:RadBusyIndicator x:Name="radBusyIndicator" IsBusy="True" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch">
            <telerikNavigation:RadTileView x:Name="RadTileView1"
                MinimizedColumnWidth="197" Grid.Column="1" Grid.Row="1" HorizontalAlignment="Stretch"
                VerticalAlignment="Stretch">
 
......
</Window>

Hope this helps. Let us know if you have further queries.

Regards,
Teodor
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
BusyIndicator
Asked by
Serge ANTONENKO
Top achievements
Rank 1
Answers by
Teodor
Telerik team
Serge ANTONENKO
Top achievements
Rank 1
Share this question
or