Как я могу создать эффект Live Tile для ListBoxItem? - PullRequest
3 голосов
/ 30 августа 2011

Я хочу создать 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);
      }
  ));

Теперь мои проблемы:

  1. Первая строка в теле нити. Этот кастинг недействителен. Как мне получить случайный ListBoxItem и присвоить его planerator.Child?

  2. Эта строка //Sleep 30sec: Как бы я добавил ожидание или сон здесь?

  3. Для создания The Live Tile Effect этот способ жизнеспособен или есть лучший способ?

  4. Будут ли какие-либо серьезные проблемы с производительностью?

EDIT:

  1. 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);
                        }
                    ));

Есть идеи, почему ничего не происходит?

1 Ответ

1 голос
/ 08 сентября 2011

Не уверен, что вы пытаетесь достичь, но вот некоторые вещи, которые могут или не могут помочь:

1 - Насколько мне известно, Planerator.Child не относится к типу ListBoxItem - поэтому, присваивая его этому типу сбой - проверьте тип этого свойства.

2 - пробовали ли вы использовать System.Threading.Thread.Sleep (30000);

3 и 4 Я не могу ответить, но, возможно, Грег Шехтер может помочь:

Dead Simple 3D в WPF и Подробности реализации планировщика

...