Hello. My radbusyindicater is showing up in the center of the window (horizontally) but vertically top aligned. I need to have it left aligned.
Here is what my XAML looks like, immediately below that is my content of course and then just the closing tag for the RadBusyIndicator
It looks like the "HorizontalAlignment" propery is stuck on Stretch, or more likely I am doing something wrong, please let me know. Also one more note, I don't want this to impact the actual content, just the busy animation. I also wanted to get rid of the border and background, so basically it is just the spinning circle and text, that is working great.
Here is what my XAML looks like, immediately below that is my content of course and then just the closing tag for the RadBusyIndicator
<
telerik:RadBusyIndicator
x:Name
=
"busyIndicator"
BusyContent
=
"Loading ..."
Background
=
"Transparent"
BorderBrush
=
"Transparent"
>
<
telerik:RadBusyIndicator.OverlayStyle
>
<
Style
TargetType
=
"Rectangle"
>
<
Setter
Property
=
"Margin"
Value
=
"56,50,0,0"
/>
<
Setter
Property
=
"HorizontalAlignment"
Value
=
"Left"
/>
<
Setter
Property
=
"Width"
Value
=
"200"
/>
<
Setter
Property
=
"VerticalAlignment"
Value
=
"Top"
/>
<
Setter
Property
=
"Fill"
Value
=
"Transparent"
/>
</
Style
>
It looks like the "HorizontalAlignment" propery is stuck on Stretch, or more likely I am doing something wrong, please let me know. Also one more note, I don't want this to impact the actual content, just the busy animation. I also wanted to get rid of the border and background, so basically it is just the spinning circle and text, that is working great.