using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
using System.Threading;
namespace PhoneApp3
{
public partial class MainPage : PhoneApplicationPage
{
delegate void ProgressDelegate(int i);
//声明委托类型
//委托的内容如有不明白,见http://www.pocketdigi.com/20110916/476.html 有详细注解
ProgressDelegate progressDelegate;
//声明委托
public MainPage()
{
InitializeComponent();
}