welcome to Qijie's Blog 薛其杰
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页
摘要: 应用旨在帮助用户方便完成日常任务,增进生活乐趣, 承诺遵循以下:1)不在用户不知情的情况下使用用户的网络连接2)不访问用户的隐私信息3)不访问用户的隐私数据4)应用程序可能会将数据文件存放在客户终端中,并访问它。5)应用程序可能会使用你的摄像头,使用之前会问询客户或在客户知情情况下使用6)应用程序可能会调用邮件服务,使用之前会问询客户或在客户知情情况下使用 阅读全文
posted @ 2013-09-24 21:00 零点零一 阅读(1263) 评论(0) 推荐(0)
摘要: Accelerometer _accelerometer; int _shakeCount = 0; public MainPage() { this.InitializeComponent(); _accelerometer=Accelerometer.GetDefault(); if (_accelerometer != null) _accelerometer.Shaken += new TypedEventHandler(Shaken... 阅读全文
posted @ 2013-09-24 16:22 零点零一 阅读(204) 评论(0) 推荐(0)
摘要: I had this problem as well as I wanted to constrain my game to only landscape mode. I put this in my OnLaunched handler for App.xaml:Windows.Graphics.Display.DisplayProperties.AutoRotationPreferences=Windows.Graphics.Display.DisplayOrientations.Landscape;However I noted that in the simulator it seem 阅读全文
posted @ 2013-09-24 16:04 零点零一 阅读(267) 评论(0) 推荐(0)
摘要: class Program { static void Main(string[] args) { int[] arr = new int[] { 5,10,50,200,1000,10001}; int index = BinarySearch(arr, 5, 5, 10001); } static int BinarySearch(int[] array, int left, int right, int value) { int mid; ... 阅读全文
posted @ 2013-09-22 09:16 零点零一 阅读(230) 评论(0) 推荐(0)
摘要: We were not able to run the JAWS 14 app in a Virtual Machine after the installation is completed, that is because the sentinel system driver is not installed correctly. However we can install the sentinel system drive manually, then install the JAWS and it will work in the VM, here is the steps:Down 阅读全文
posted @ 2013-09-12 13:48 零点零一 阅读(263) 评论(0) 推荐(0)
摘要: http://blog.sina.com.cn/s/blog_4c6e822d0100ianf.html 阅读全文
posted @ 2013-09-05 20:04 零点零一 阅读(187) 评论(0) 推荐(0)
摘要: This App isonly a protetype of MVA WP app, the intent is to demostrate to Leadership person about what the app would like in the team.This app will use your internet connection, the usage is to download latest course from the MVA site.You can view the video on line, you can download the video to you 阅读全文
posted @ 2013-08-30 11:47 零点零一 阅读(1082) 评论(0) 推荐(0)
摘要: 在网上找了N多相关的东西总说的不够细,现在终于找到了.可以了解web.cofig和Global.asax之间的关系以及执行的顺序.在Global.asax.cs文件中protected void Application_BeginRequest(Object sender, EventArgs e){ Application["StartTime"] = System.DateTime.Now;}再在webform1中的page_load事件中添加private void Page_Load(object sender, System.EventArgs e){ Syste 阅读全文
posted @ 2013-08-24 07:53 零点零一 阅读(340) 评论(0) 推荐(0)
摘要: http://blogs.u2u.be/diederik/post/2012/03/07/Databinding-to-the-VariableSizedWrapGrid-in-Windows-8-Metro.aspx 阅读全文
posted @ 2013-08-15 15:10 零点零一 阅读(164) 评论(0) 推荐(0)
摘要: 摘要:1. 添加Map控件到程序。2. 在Map控件中显示您当前的位置。内容:首先在WMAppManifest.xml中的Capabilities选项卡中勾选如下两项:ID_CAP_MAP, ID_CAP_LOCATION在XAML中添加Map控件: 在后台代码中, 添加Convert 类使能从Windows.Devices.Geolocation; 转换到 System.Device.Location; public static class CoordinateConverter { publi... 阅读全文
posted @ 2013-08-07 08:27 零点零一 阅读(382) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页