欢迎访问移动开发之家(rcyd.net),关注移动开发教程。移动开发之家  移动开发问答|  每日更新
页面位置: > >

WindowsPhone开发教程

最近更新文章

Windows Phone开发之xaml传值交互与控件hyperlinkButton的使用(投递于:19-03-28)

Windows Phone开发之xaml传值交互与控件hyperlinkButton的使用 功能显示: MainPanel--跳转到Panel1.MainPanel有两个URI连接,分别传递不同的值;Panel接收传递的参数,在TextBlock中显示出来。 界面如下:

Windows Phone开发之图片控件Image及定义URI(投递于:19-03-28)

Windows Phone开发之图片控件Image及定义URI 图片控件Image的使用如下: [html] Image Grid.Column=1 Grid.ColumnSpan=3 Grid.Row=5 Grid.RowSpan=2 VerticalAlignment=Stretch HorizontalAlignment=Stretch Name=image1 Stretch=UniformT

Windows Phone开发之控件Grid,TextBox,TextBlock,RadioButton,CheckBox,ListBox简介(投递于:19-03-28)

Windows Phone开发之控件Grid,TextBox,TextBlock,RadioButton,CheckBox,ListBox简介 代码如下: [html] Grid x:Name=ContentPanel Grid.Row=1 Margin=12,0,12,0 Grid.ColumnDefinitions ColumnDefinition Width=160*/ ColumnDefinition Width=10/

Windows Phone开发之集合List和Foreach循环(投递于:19-03-28)

Windows Phone开发之集合List和Foreach循环 集合的概念就不说了,原来存放对象比较方便,方便传值。 新建一个Car类: [csharp] class Car{ public string color { get; set; } public string name { get; set; } } cl

Windows Phone开发之DateTime(投递于:19-03-28)

Windows Phone开发之DateTime DateTime myValue = DateTime.Now;//系统当前时间2012/5/22 16:47:40 String temp = myValue.ToString();//字符接收当前时间2012/5/22 16:47:40 String temp1 = myValue.ToShortDateString();//2012/5/22 String

Windows Phone开发之String与StringBuilder(投递于:19-03-28)

Windows Phone开发之String与StringBuilder Windows Phone开发,越来越火,开发涉及的东西也是越来越多,但是与Windows Mobile开发还是有很大的区别。 开发语言都是C#,在这一点上都是一样的。对于

Windows Mobile开发之不同分辨率的处理与界面重新布局(投递于:19-03-28)

Windows Mobile开发之不同分辨率的处理与界面重新布局 市面上有很多不同分辨率的手机或者PDA,由于他们的存在,不得不在开发完一个合适的项目时移植到另外一个不同分辨率的终端上,

Windows Mobile项目中使用DLL加载图片(投递于:19-03-28)

Windows Mobile项目中使用DLL加载图片 图形编程并不是游戏的专利,在普通的应用程序中也会经常用到背景图、图标、Icon等。 最初,使用图片时都是直接加载图片文件夹Resources里面的图片,

Windows Mobile 开发界面之WelcomeForm->UserLoginForm->MainPanelForm(投递于:19-03-28)

Windows Mobile 开发界面之WelcomeForm-UserLoginForm-MainPanelForm 每个项目都会有一个主程序窗口,在客户端应用软件上更是如此。MainPanelForm 是主程序窗口,UserLoginForm是用户登录窗口,WelcomeForm是

在电脑中激活、获取Windows Phone和模拟器的信息(投递于:19-03-28)

在电脑中激活、获取Windows Phone和模拟器的信息 对于正确安装后的Windows Phone 7的SDK,在DatastoreManager类型中查询的平台和设备应该是这样的。 === 平台 === Windows Phone 7 === 设备 === Windows Pho

Windows Phone 7有损,缩略图的生成(投递于:19-03-28)

Windows Phone 7有损,缩略图的生成 我在读取相册的时候每个图片都太大了! 我就想有没有可以生成缩略图的方式来显示这样可以节省手机内存 下面是代码 思路,不能跑起来 Image pici = n

wp记账簿(投递于:19-03-28)

wp记账簿 xaml 代码 Grid x:Name=LayoutRoot Grid.Background ImageBrush Stretch=Fill ImageSource=QTRASH.PNG/ /Grid.Background Grid.RowDefinitions RowDefinition Height=Auto/ RowDefinition Height=*/ /Grid.RowDefinitions !--TitlePanel contain

使用MVVM绑定AppBar事件(投递于:19-03-28)

使用MVVM绑定AppBar事件 最近在做一个项目,使用到MVVM,在appbar事件绑定时候发现不知道怎么绑定,查阅资料发现时可以绑定的,需要借助到AppBarUtils,可以到这里http://appbarutils.codeplex.com

wp7生命周期及多任务详解(投递于:19-03-28)

wp7生命周期及多任务详解 APP生命周期: 单个app运行时: 启动(Launching)------进入页面(OnNavigationTo)------离开页面(OnNavigationFrom)------关闭(Closing) 多个app运行时: 1. 启动(Launching)---

windows phone 7基本导航(投递于:19-03-28)

windows phone 7基本导航 一个简单的示例------页面间导航。 在MainPage.xaml的内容区域(content area)放置一个TextBlock,并对其ManipulationStarted事件注册一个事件处理程序: Grid x:Name=ContentPanel Grid.

WindowsPhone页面导航(投递于:19-03-28)

WindowsPhone页面导航 使用HyperlinkButton的NavigateUri直接指定路径 HyperlinkButton Content=用户 NavigateUri=/Users/UserInfo.xaml Height=30 HorizontalAlignment=Left Margin=26,45,0,0 Name=HyperlinkButton VerticalAlignment=Top Wid

Windows Phone网络HttpWebRequest用法(投递于:19-03-28)

Windows Phone网络HttpWebRequest用法 在Windows Phone系统中,通过HttpWebRequest类可以很容易的发送网络请求,获取网络数据。HttpWebRequest是异步操作,不会堵塞主线程。 1.通过HttpWebRequest.CreateHttp

LongListSelector锁定组头(sticky header )之我的实现(投递于:19-03-28)

LongListSelector锁定组头(sticky header )之我的实现 LongListSelector如何实现类似于WP7手机程序列表的效果,将屏幕显示范围内的第一个分组的GroupHeader一直显示在列表的最上方。 国内国外论坛

WP7:模拟开始屏幕Tile漂动效果(投递于:19-03-28)

WP7:模拟开始屏幕Tile漂动效果 在WP7手机的开始屏幕,如果你Hold住某一个瓷贴,就会发现除了你按住的那个瓷贴其他全部下沉半透明,然后开始在不停地漂来漂去~~ 今天来模仿一下这个效

Windows Phone 7推送通知服务范例(投递于:19-03-28)

Windows Phone 7推送通知服务范例 推送服务端代码: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows

Windows Phone&添加service reference出错(投递于:19-03-28)

Windows Phone添加service reference出错 最近几天在学习windows phone7的开发,在做Location Service时遇到一个问题,就是添加一个Service Reference(我添加的是http://msrmaps.com/TerraService2.asmx,大家应该都

与众不同windows phone(1)-Hello Windows Phone(投递于:19-03-28)

与众不同windows phone(1)-Hello Windows Phone 介绍 与众不同 windows phone 7.5 (sdk 7.1) 使用 Silverlight 开发 Windows Phone 应用程序 使用 XNA 开发 Windows Phone 应用程序 使用 Silverlight 和 XNA 组合开发 Window

WP7中英文互翻译源码Demo(投递于:19-03-28)

WP7中英文互翻译源码Demo 最终效果在WP7模拟器上 代码实现同样调用一个WebServices服务 前台代码: 1.phone:PhoneApplicationPage 2. x:Class=WebCPServic.MainPage 3. xmlns=http://schemas.microsoft.com/winfx/2006/xaml

Windows Mobile引路蜂地图开发示例:第一个地图应用(投递于:19-03-28)

Windows Mobile引路蜂地图开发示例:第一个地图应用 打开Visual studio 创建一个新项目WM6GISEngineTutorial。把Form1改名为MainForm,添加对引路蜂类库的引用,并把guidebee.lic做为Content添加到项目中

Windows Mobile引路蜂地图开发示例:设置地图类型(投递于:19-03-28)

Windows Mobile引路蜂地图开发示例:设置地图类型 创建RasterMap实例之后,可以对其进行放大,缩小,平移,设置地图类型等操作。 在第一个地图应用中,在调用RasterMap.setCenter 时可以指定

  1. 首页
  2. 上一页
  3. 12
  4. 13
  5. 14
  6. 15
  7. 16
  8. 17
  9. 18
  10. 19
  11. 20
  12. 21
  13. 22
  14. 下一页
  15. 末页