Rainbow Ring¶
The Rainbow Ring is a neat way to show loading by displaying a multi-colored ring in motion.
Properties¶
RingThickness - double¶
Gets or sets the thickness of the ring. Default is 12d.
Example Usage¶
Xaml¶
<aurora:RainbowRing x:Name="loading" RingThickness="24"/>
C#¶
var loading = new RainbowRing
{
RingThickness = 24
};