[Xwt.Wpf] Use a transparent background for spinners.

Previously they would be contained in a white rectangle thus not blending in their container.
This commit is contained in:
Jeremie Laval 2013-01-14 11:57:43 +00:00
Родитель 9186dd7e0c
Коммит 433994e769
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -67,7 +67,7 @@ namespace Xwt.WPFBackend
{
Width = 25;
Height = 25;
Background = new SolidColorBrush (Colors.White);
Background = new SolidColorBrush (Colors.Transparent);
Storyboard = new Storyboard { RepeatBehavior = RepeatBehavior.Forever, Duration = TimeSpan.FromMilliseconds (Duration) };
for (int i = 0; i < 360; i += 30) {