Я хочу создать The Live Tile Effect
для моего ListBox
.
Я думал о создании случайного числа в диапазоне от 0 до ListBox.Items.Count
, а затем о взятии этого ListBoxItem
и его анимации.
Я использую это для анимации.
Итак, базовая анимация в XAML будет выглядеть так:
xmlns:pl="clr-namespace:Planerator"
<pl:Planerator x:Name="planerator">
<Image Name="logo" Source="somePath">
<Image.Triggers>
<EventTrigger RoutedEvent="Image.MouseLeave">
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetName="planerator"
Storyboard.TargetProperty="RotationX"
From="0" To="360"
BeginTime="0:0:0"
Duration="0:0:1"
AutoReverse="False"/>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Image.Triggers>
</Image>
</pl:Planerator>
Это то, что я пробовал до сих пор:
<ListBox Name="someList"
Loaded="someList_Loaded">
</ListBox>
someList_Loaded
Метод:
Random random = new Random();
Planerator planerator = new UI.WPF.Planerator();
planerator.Name = "planerator";
someList.Dispatcher.Invoke(System.Windows.Threading.DispatcherPriority.Background,
new Action(
delegate()
{
do
{
//planerator.Child = (ListBoxItem)someList.Items[random.Next(0, someList.Items.Count - 1)];
DoubleAnimation myDoubleAnimation = new DoubleAnimation()
{ From = 0, To = 360, Duration = new Duration(TimeSpan.FromMilliseconds(1)) };
Storyboard.SetTargetName(planerator, planerator.Name);
Storyboard.SetTargetProperty(myDoubleAnimation, new PropertyPath("RotationX"));
Storyboard storyboard = new Storyboard();
storyboard.Children.Add(myDoubleAnimation);
someList.MouseMove += delegate(object newSender, MouseEventArgs args)
{
storyboard.Begin(currentListItem);
};
//Sleep 30sec
}while(true);
}
));
Теперь мои проблемы:
Первая строка в теле нити. Этот кастинг недействителен. Как мне получить случайный ListBoxItem
и присвоить его planerator.Child
?
Эта строка //Sleep 30sec
: Как бы я добавил ожидание или сон здесь?
Для создания The Live Tile Effect
этот способ жизнеспособен или есть лучший способ?
Будут ли какие-либо серьезные проблемы с производительностью?
EDIT:
ItemContainerGenerator generator = someList.ItemContainerGenerator;
ListBoxItem currentListItem = generator.ContainerFromIndex(random.Next(0, someList.Items.Count - 1)) as ListBoxItem;
EDIT:
Это то, что я получил до сих пор, но ничего не происходит:
lstNotifications.Dispatcher.Invoke(System.Windows.Threading.DispatcherPriority.Background,
new Action(
delegate()
{
ItemContainerGenerator generator = lstNotifications.ItemContainerGenerator;
ListBoxItem currentListItem = generator.ContainerFromIndex(random.Next(0, lstNotifications.Items.Count - 1)) as ListBoxItem;
var tempObject = Content;
Content = null;
planerator.Child = currentListItem;
Content = tempObject;
this.RegisterName(planerator.Name, planerator);
DoubleAnimation myDoubleAnimation = new DoubleAnimation() { From = 0, To = 360, Duration = new Duration(TimeSpan.FromMilliseconds(1)) };
Storyboard.SetTargetName(planerator, planerator.Name);
Storyboard.SetTargetProperty(myDoubleAnimation, new PropertyPath(Planerator.RotationXProperty));
Storyboard storyboard = new Storyboard();
storyboard.RepeatBehavior = RepeatBehavior.Forever;
storyboard.Children.Add(myDoubleAnimation);
storyboard.Begin(currentListItem);
}
));
Есть идеи, почему ничего не происходит?