随笔分类 -  programming wp7 之读书笔记

哈哈 ,分析代码的,偶尔会给出亮点
windwos phone 的多任务
摘要:理论上,程序的切换不难,但是程序占用的的资源共享很难——包括屏幕和输入设备 Let’s nail down some terminology that’s consistent with some events I’ll discuss later: • When an application is run from the Start screen, it is said to be... 阅读全文

posted @ 2012-06-14 14:33 GIS-MAN 阅读(194) 评论(0) 推荐(0)

导航基础
摘要:this.NavigationService.Navigate(new Uri("/SecondPage.xaml", UriKind.Relative)); 导航到SecondPage.xaml 页面间传递参数,通过new uri (string str)通过str 传递参数 string destination = "/SecondPage.xaml"; Color clr = (Co... 阅读全文

posted @ 2012-06-14 11:52 GIS-MAN 阅读(289) 评论(0) 推荐(0)

wp 之path详细 以及一个关于LinearGradientBrush 的动画
摘要:首先LinearGradientBrush 画刷竟然包含Trsanslate 属性也就有x,y 属性 <Path HorizontalAlignment="Center" VerticalAlignment="Center" StrokeThickness="25" Data="M 1... 阅读全文

posted @ 2012-06-06 15:37 GIS-MAN 阅读(348) 评论(0) 推荐(0)

WP数据绑定
摘要:绑定到自己 首先source 变成RelativeSource , Text="{Binding RelativeSource={RelativeSource Self}, ,path 就是绑定的数据,vs会在编写xaml代码的时候 直接体现出来(不用编译) 阅读全文

posted @ 2012-06-06 15:12 GIS-MAN 阅读(244) 评论(0) 推荐(0)

导航