应用程序在加载数据的时候,总是死死的瞬间显示,会不会觉得乏味呢? 一般显示列表数据使用的ListBox控件 , 这里我写了一个ListBox的数据加载效果,请大家围观 (顺便扯蛋一句,Silverlight的中实现此效果方法类似), 好了废话不多说, 上代码 !!!
逐个加载数据代码:- private int i = 0;
- private List<Users> list = new List<Users>();
- private DispatcherTimer dt = new DispatcherTimer() { Interval = new TimeSpan(0, 0, 0, 0, 100) };
- private void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e)
- {
- /*加载xml内容*/
- XDocument x = XDocument.Parse(Tools.WriteOrReadToFile("xml/Config.xml", null, Enums.FileType.读));
- foreach (XElement temp in x.Element("root").Element("users").Elements())
- {
- Users user = new Users() { Address = temp.Attribute("Address").Value, Age = temp.Attribute("Age").Value, EnglishName = temp.Attribute("EnglishName").Value, Name = temp.Attribute("Name").Value };
- list.Add(user);
- }
- /*这里必须新开一个线程去执行加载,不然ListBox还是会同时显示数据项*/
- /*DispatcherTimer也是一个线程*/
- dt.Tick += new EventHandler(dt_Tick);
- dt.Start();
- }
- void dt_Tick(object sender, EventArgs e)
- {
- if (i < list.Count)
- {
- listBox1.Items.Add(list[i]); //添加数据
- i++;
- }
- else
- {
- i = 0;
- dt.Stop();
- }
- }
接着编辑ListBox的ItemContainerStyle模版,创建一个状态组,再创建一个状态,打开故事板,在0秒的时候把ContentContainer的透明度设置成"0", 0.5秒的时候设置成1,这就是传说中的淡出效果,再给ContentContainer添加一个GoToStateAction触发器,在Load事件里调用自己定义的状态, F5 ,搞定!
- <VisualStateGroup x:Name="VisualStateGroup">
- <VisualState x:Name="VisualState">
- <Storyboard>
- <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Opacity)" Storyboard.TargetName="ContentContainer">
- <EasingDoubleKeyFrame KeyTime="0" Value="0"/>
- <EasingDoubleKeyFrame KeyTime="0:0:0.5" Value="1"/>
- </DoubleAnimationUsingKeyFrames>
- </Storyboard>
- </VisualState>
- </VisualStateGroup>