2、引用建好的WebService
(点击查看原图)
图3-引用WebService
3、WeatherService智能手机上运行的程序源代码
using System;
using System.Drawing;
using System.Collections;
using System.Windows.Forms;
using System.Data;
namespace WeatherService
{
/// <summary>
/// Summary description for MainForm.
/// </summary>
public class MainForm : System.Windows.Forms.Form
{
private System.Windows.Forms.ComboBox comboBox_City;
private System.Windows.Forms.MenuItem menuItem1;
private System.Windows.Forms.Label txt_Weather1;
private System.Windows.Forms.Label txt_Date1;
private System.Windows.Forms.Label txt_Temp1;
private System.Windows.Forms.Label txt_WindPower1;
private System.Windows.Forms.Label txt_Temp2;
private System.Windows.Forms.Label txt_WindPower2;
private System.Windows.Forms.Label txt_Date2;
private System.Windows.Forms.Label txt_Weather2;
private System.Windows.Forms.MainMenu mainMenu1;
private System.Windows.Forms.MenuItem menuItem_Menu;
private System.Windows.Forms.MenuItem menuItem_Exit;
private System.Windows.Forms.Label label_City;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.MenuItem menuItem2;
private System.Windows.Forms.MenuItem menuItem3;
public string[] cityList = new string[]
{
"北京",
"上海",
"天津",
"石家庄",
"哈尔滨",
"沈阳",
"长春",
"太原",
"济南",
"郑州",
"天津",
"呼和浩特",
"西安",
"银川",
"兰州",
"西宁",
"乌鲁木齐",
"合肥",
"南昌",
"南京",
"杭州",
"武汉",
"长沙",
"广州",
"深圳",
"福州",
"厦门",
"南宁",
"桂林",
"海口",
"重庆",
"成都",
"贵阳",
"昆明",
"拉萨",
"香港",
"澳门",
"台北",
};
public MainForm()
{
InitializeComponent();
foreach( string x in cityList)
{
this.comboBox_City.Items.Add(x);
}
this.comboBox_City.SelectedIndex = 0;
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
base.Dispose( disposing );
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.mainMenu1 = new System.Windows.Forms.MainMenu();
this.menuItem1 = new System.Windows.Forms.MenuItem();
this.menuItem_Menu = new System.Windows.Forms.MenuItem();
this.menuItem_Exit = new System.Windows.Forms.MenuItem();
this.menuItem3 = new System.Windows.Forms.MenuItem();
this.menuItem2 = new System.Windows.Forms.MenuItem();
| ·神气兔宝贝中文版 |
| ·QQ空间人气精灵3.80 Beta4 |
| ·[GBA]元气史莱姆:冲击的尾巴团 |
| ·小鸡报天气QQ表情 |
| ·桌面天气秀(XDeskWeather)v4.1 |
| ·金庸群侠传2003之剑气碧烟横 |
| ·电脑万能加锁专家 2006 世界气象日特别版 |
| ·奇童梦乐-语气篇2006夏 |
| ·信普天气预报v5.7 |
| ·龙帝天气预报 V1.99 正式版 |
上一篇:QQ聊天避开木马病毒攻击的小技巧
