Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6470013
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T06:03:37+00:00 2026-05-25T06:03:37+00:00

I know you can achieve this in Silverlight 4 by playing with the ListBoxItem

  • 0

I know you can achieve this in Silverlight 4 by playing with the ListBoxItem style’s LayoutStates, i.e. BeforeUnloaded, BeforeLoaded and AfterLoaded.

It doesn’t seem to be working at all in WP7 although these states exist in the default style.

I am currently using version 7.1.

Is there any way I can get this working?

Thanks,
Xin

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T06:03:37+00:00Added an answer on May 25, 2026 at 6:03 am

    for this I used Artefact Animator, it’s for Silverlight but works perfectly for WP7 also. The code shows only the addition. Whole code from the project’s sample page.

    MainPage.xaml

    <UserControl.Resources>
    
        <!-- ADDS SMOOTH SCROLL -->
        <ItemsPanelTemplate x:Key="ItemsPanelTemplate">
            <StackPanel/>
        </ItemsPanelTemplate>
    
    </UserControl.Resources>
    <Grid>
        <ListBox x:Name="lb" Height="247" Width="100" ItemsPanel="{StaticResource ItemsPanelTemplate}" />
        <Button x:Name="addBtn" Content="Add" Height="72" HorizontalAlignment="Left" Margin="159,145,0,0"  VerticalAlignment="Top" Width="160" />
    </Grid>
    

    MainPage.xaml.cs

    public partial class MainPage : PhoneApplicationPage
    {
        private static ScrollViewer _scrollViewer;
        // Constructor
        public MainPage()
        {
            InitializeComponent();
            Loaded += MainPage_Loaded;
        }
    
        void MainPage_Loaded(object sender, RoutedEventArgs e)
        {
            // INIT
            lb.Items.Clear();
            lb.UpdateLayout();
    
            // SCROLL INTERACTION
            _scrollViewer = FindVisualChild<ScrollViewer>(lb);
            var bar = FindVisualChild<ScrollBar>(_scrollViewer);
            if (bar != null)
                bar.ValueChanged += (s, args) => SetValue(ListBoxScrollOffsetProperty, args.NewValue);
    
            // INPUT
            addBtn.Click += (s, args) => AddItem();
        }
    
        private void AddItem()
        {
            // Create New ListBoxItem
            var lbi = new ListBoxItem
            {
                Content = "Item " + lb.Items.Count,
                RenderTransform = new CompositeTransform
                {
                    TranslateX = -lb.Width
                },
            };
    
            // Add ListBoxItem
            lb.Items.Add(lbi);
            lb.UpdateLayout();
    
            // Animate In Item
            ArtefactAnimator.AddEase(lbi.RenderTransform, CompositeTransform.TranslateXProperty, 0, 1, AnimationTransitions.CubicEaseOut, 0);
            ArtefactAnimator.AddEase(this, ListBoxScrollOffsetProperty, _scrollViewer.ScrollableHeight, .8, AnimationTransitions.CubicEaseOut, 0);
        }
    
    
        // LISTBOX SCROLL OFFSET
        public static readonly DependencyProperty ListBoxScrollOffsetProperty =
        DependencyProperty.Register("ListBoxScrollOffset", typeof(double), typeof(MainPage), new PropertyMetadata(0.0, OnListBoxScrollOffsetChanged));
    
        private static void OnListBoxScrollOffsetChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            _scrollViewer.ScrollToVerticalOffset((double)e.NewValue);
        }
    
        public double ListBoxScrollOffset
        {
            get
            {
                return (double)GetValue(ListBoxScrollOffsetProperty);
            }
            set
            {
                SetValue(ListBoxScrollOffsetProperty, value);
            }
        }
    
        // VISUAL HELPER
        public static childItem FindVisualChild<childItem>(DependencyObject obj) where childItem : DependencyObject
        {
            for (var i = 0; i < VisualTreeHelper.GetChildrenCount(obj); i++)
            {
                var child = VisualTreeHelper.GetChild(obj, i);
                if (child != null && child is childItem)
                {
                    return (childItem)child;
                }
                else
                {
                    var childOfChild = FindVisualChild<childItem>(child);
                    if (childOfChild != null)
                    {
                        return childOfChild;
                    }
                }
            }
            return null;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know we can achieve this in VIM using nerdtree and gT and gt
we are using framework 3.5 please let me know how can I achieve following
This is something I know can be done somehow , because I've done it
I am fairly new to CSS and I wanted to know how can achieve
I want to add a new item into my datagridview. I know can achieve
I'd like to know how debugging is achieved in a lazy functional language. Can
I want to know can we have a JPanel with a Layout other than
I need to know can we add image in TextArea through StyleableTextField htmlText because
I have a query that I know can be done using a subselect, but
Sometimes, I'll end up having to catch an exception that I know can never

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.