Tell me pls how to implement automatically loadable listBox. When scrolling down elements should be added to the previous one. Unfortunately the examples of such list I have not found, I saw that in the network are advised to use ObservalableCollection, but I don't understand how to add elements to the collection. Here is my ample test application.
I need to connect to web-service and coming from the xml parsing. Here an example of work with Web service if request like this http://beta.sztls.ru/mapp/eps/?count=10 the service constructs xml with the latest ten news, on such a request http://beta.sztls.ru/mapp/eps/?count=10&skip=10, it returns the xml with the following ten news I have a class
public class Item
{
public string Description { get; set; }
public string Title { get; set; }
public string Image { get; set; }
}
And in code-behind
public partial class MainPage : PhoneApplicationPage
{
private ObservableCollection<Item> _collection;
public ObservableCollection<Item> Collection
{
get
{
if (_collection == null)
{
_collection = new ObservableCollection<Item>();
}
return _collection;
}
}
private int endIndex = 0;
// Конструктор
public MainPage()
{
InitializeComponent();
this._collection = new ObservableCollection<Item>();
this.listBox1.ItemsSource = Collection;
this.listBox1.Loaded += new RoutedEventHandler(listBox1_Loaded);
}
void listBox1_Loaded(object sender, RoutedEventArgs e)
{
try
{
LoadItems(10);
}
catch (Exception exception)
{
MessageBox.Show(exception.StackTrace);
}
}
private void LoadItems(int count)
{
WebClient webClient = new WebClient();
webClient.DownloadStringCompleted += new DownloadStringCompletedEventHandler(webClient_DownloadStringCompleted);
webClient.DownloadStringAsync(
new Uri(String.Format("http://beta.sztls.ru/mapp/eps/" + "?count={0}" + "&skip={1}" + "&ticks={2}",
count, this.endIndex, DateTime.Now.Ticks)));
this.endIndex+=count
}
void webClient_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
{
if (e.Error == null)
{
ParseResult(e.Result);
}
}
private void ParseResult(string result)
{
XElement element = XElement.Parse(result);
var res = from part in element.Descendants("news")
select new Item
{
Image = part.Element("image_url").Value,
Title = part.Element("title").Value,
Description = part.Element("description").Value
};
//Here,as far as I understand, I need like this Collection.Add(res)
}
}
in Xaml
<toolkit:LongListSelector Grid.Row="1" IsFlatList="True" x:Name="listBox1">
<toolkit:LongListSelector.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Image Source="{Binding Image}" Width="100" Height="100"/>
<StackPanel>
<TextBlock Text="{Binding Title}" FontSize="22" Foreground="Red"/>
<TextBlock Text="{Binding Decription}" FontSize="26" Foreground="Blue"/>
</StackPanel>
</StackPanel>
</DataTemplate>
</toolkit:LongListSelector.ItemTemplate>
<toolkit:LongListSelector.ListFooterTemplate>
<DataTemplate>
<TextBlock x:Name="footer"/>
</DataTemplate>
</toolkit:LongListSelector.ListFooterTemplate>
</toolkit:LongListSelector>
And how do I keep track of the time when I should send a request for load new items?
Thanks in advance for your help and sorry for my English. I have used http://www.bing.com/translator =)