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.
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
0
Hi Serge ANTONENKO,
Teodor
the Telerik team
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.
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
Hello Serge ANTONENKO,
Hope this helps. Let us know if you have further queries. Regards,
Teodor
the Telerik team
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:telerik
=
"http://schemas.telerik.com/2008/xaml/presentation"
xmlns:telerikNavigation
=
"clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation"
xmlns:d
=
"http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc
=
"http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable
=
"d"
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