Windows Phone 练习1 天气预报查询
这是我在博客园的第一篇博文,自我纪念一下,O(∩_∩)O~
最近在学习Windows Phone相关知识,并做了一些练习,我想把这些练习记录下来,一来是我的成长记录,二来希望能对需要的人有所帮助。闲话少叙,言归正题。
今天的练习是天气预报查询,使用Web Service实现
地址:http://webservice.webxml.com.cn/WebServices/WeatherWS.asmx
上图
运行界面:
文件列表:
MainPage.xaml文件代码:
1 <phone:PhoneApplicationPage
2 x:Class="Weather.MainPage"
3 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5 xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
6 xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
7 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
8 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
9 mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="768"
10 FontFamily="{StaticResource PhoneFontFamilyNormal}"
11 FontSize="{StaticResource PhoneFontSizeNormal}"
12 Foreground="{StaticResource PhoneForegroundBrush}"
13 SupportedOrientations="Portrait" Orientation="Portrait"
14 shell:SystemTray.IsVisible="True">
15
16 <!--LayoutRoot is the root grid where all page content is placed-->
17 <Grid x:Name="LayoutRoot" Background="Transparent">
18 <Grid.RowDefinitions>
19 <RowDefinition Height="Auto"/>
20 <RowDefinition Height="*"/>
21 </Grid.RowDefinitions>
22
23 <!--TitlePanel contains the name of the application and page title-->
24 <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
25 <TextBlock x:Name="ApplicationTitle" Text="天气查询" Style="{StaticResource PhoneTextNormalStyle}"/>
26 </StackPanel>
27
28 <!--ContentPanel - place additional content here-->
29 <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
30 <StackPanel>
31 <TextBlock Text="请输入城市或地区的名称:"></TextBlock>
32 &nb
相关新闻>>
- 发表评论
-
- 最新评论 更多>>
您可能感兴趣的文章
- Windows Phone 实用开发技巧(11):让StackPanel中的
- Pocket PC获取路径的六种方法
- 白话算法(7) 生成全排列的几种思路(三) 临位对换法
- Windows Phone实用开发技巧(1):保存图片及加载图片
- Windows Phone 实用开发技巧(23):强制关闭SIP
- Windows Phone 7 开发探索笔记5——页面间导航
- Windows Phone 7 最新的开发工具库
- 小试Sketchflow for Windows Phone 7
- Windows Phone 7 开发之Microsoft.Phone.Tasks中
- Windows Phone 实用开发技巧(2):使用TombstoneHelp