(1)使用xaml进行页面导航 添加Hyperlinkbutton控件,填写代码NavigateUri=“/View/Music.xaml”,这样就可以跳转到Music.xaml页面。(2)使用C#代码进行页面导航 添加Button控件,在click事件里添加代码,NavigationService.Navigate(new Uri("/View/Music.xaml",UnKind.Relative));点击按钮就可以跳转到Music.xaml文件。(3)页面导航传递参数 添加HyperlinkButton控件,填写代码NavigateUri=“/View/Music.xaml?Song=歌 Read More
昨天做了自己的第一个win phone 7程序,今天继续这个程序,进行一些改进。邮编查询小工具,不需要通过点击button按钮来查询地址,即输入完就自动显示查询结果。(1)第一步要做的是建一个类,命名为PostcodeClass.cs,主要代码如下:public class PostcodeClass : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; private int postcode; public int Postcode { get { return postco Read More
silverlight for win phone 7,学习用silverlight开发win phone 7程序,照着视频做出了自己的第一个win phone 7 程序。程序叫邮编查询小工具,功能是简单的通过输入邮编查询地址。(1)开发这个小工具,首先要做的是设计界面,很简单,用了两个textblock,两个textbook和一个button控件。(2)写了一个公共类,叫PostCodeQuery,cs,编写的一些代码不是很懂。public class PostCodeQuery { private static readonly PostCodeQuery instance = new P Read More