⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.cs

📁 Accessing microsoft live web services from windows mobile
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using LiveExpoService;

namespace LiveExpoCategories2
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            List<LiveExpoCategory> categoryList;

            Cursor.Current = Cursors.WaitCursor;
            listBox1.Items.Clear();
            LiveExpoCategories categories = LiveExpoCategories.Instance();
            long startTime = Environment.TickCount;

            categoryList = categories.GetCategories(true, cbXmlTextReader.Checked);

            float elapsedTime = (Environment.TickCount - startTime) / 1000F;
            statusBar1.Text = "Retrieval time: " + elapsedTime.ToString("N2") + " sec";

            if (categoryList != null)
            {
                foreach (LiveExpoCategory c in categoryList)
                {
                    listBox1.Items.Add(c.Name);
                }
            }
            Cursor.Current = Cursors.Default;
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -