- 浏览: 60124 次
- 性别:
- 来自: 北京
最新评论
文章列表
上码:不解释
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Navigation;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
using wp8Lbs.Resources;
using System.Device.Location;
using S ...
首先导入Toolkit.dll文件
将App.xaml.cs中InitializePhoneApplication()函数里的RootFrame进行修改
RootFrame=new TransitionFrame();
引入xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
上代码:
Slide.xaml
<phone:PhoneApplicationPage
x:Class="wp8Transacti ...
打开vs 检测一下时候安装了sqlite for windows phone
工具 --- 扩展和更新---sqlite for windows phone 检测是否安装 若未安装联机搜索
安装成功
2.添加sqlite-net
项目右键 --- 管理Nutget程序包 搜索 sqlite-net 安装
安装成功会有SQLite.cs,SQLiteAsync.cs俩文件
3.到https://github.com/peterhuene/sqlite-net-wp8 下载sqlite-net
添加sqlite-net Community.Csh ...
前提:必须使用真机,真机注册
服务器端使用的是winform做的
客户端wp8系统 nokia920
client代码:
图:
注意一定要在wmappmanifest.xml中勾选 pushnotifiation 图:
上代码:
MainPage.xaml.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Window ...
下面是我用oc实现的快速排序,冒泡排序,直接插入排序和折半插入排序,希尔排序,堆排序,直接选择排序
/*******************************快速排序 start**********************************/
//随即取 当前取第一个,首先找到第一个的位置,然后分成left和right两组子集 ,分别对left和right继续执行分割(同上操作)
-(void)QuickSort:(NSMutableArray *)list StartIndex:(NSInteger)startIndex EndIndex:(NSInteger)endInd ...
MProgress.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
using System.Windows.Threading;
namespace MyControl.M
{
public partial class MProgres ...
鉴于项目测试:
创建一个wp8项目
在解决方案下 右键 操作 如图:
重新生成 便可添加dll 到测试项目中
注意:1.若是在项目内容不自定义控件导入头形式如: xmlns:sam="clr-namespace:MyControl.M"
2.若是导入dll库中定义的控件头形式如:xmlns:AD="clr-namespace:ADLib.AD.controls;assembly=ADLib"
3.每次修改完库源码,需重新生成,否则在测试项目中不启作用
7.在dll库中添加资源
如我在我的ADLi ...
1.TransferPreferences属性设置:
后台传输服务上传最大文件大小为5M
通过手机网络连接最大下载大小为20M,若超过此大小,属性将自动更改为AllowBattery
通过wifi没有外部电源最大下载大小为100M,若超过此大小,属性设置为None
2.每个应用程序队列中未完成的最大请求个数为25个,最大并发数为2个,对大排队传输数位500
3.网络连接数组3G网络低于50kbps,wifi/usb网络低于100kbps会暂停传输并重试
上代码:
MainPage.xaml.cs
using System;
using System.Collections ...
自定义一个返回按钮,以下是我的操作。
内容部分也是在网上参考的,但是都不太详细,我详细总结一下:
1.首先右键 .xaml文件 用blend打开
2.打开后 查看源
3.点击一下 源中你要自定义背景的button标签
4.看blend的左侧 在button上右键 编辑模版 编辑副本 确定
这时候会在 <phone:PhoneApplicationPage.Resources></phone:PhoneApplicationPage.Resources>标签内生成style资源
5.你可以在style资源中控制一下 背景色之类的
我的代 ...
MScheduledTaskAgent项目下 ScheduledAgent.cs
using System.Diagnostics;
using System.Windows;
using Microsoft.Phone.Scheduler;
using Microsoft.Phone.Shell;
using System.IO.IsolatedStorage;
using System.IO;
namespace MScheduledTaskAgent
{
public class ScheduledAgent : ScheduledTaskAgent
{
...
产品需求,暂别ios开发,着手win8开发。
说说这个scrollview滑动的动画效果吧,郁闷的是它不像ios中的uiscrollview提供了很多api,动画都集成的很好
我在做一个内容展示页面的时候,参考zarker在处理,所以不得不让scrollview滑动起来,在网上看了一些人写的,很是郁闷,估计都是抄袭一个人的,我也顺手抄了过来,反复修改调试,今天终于跑起来了,下面提供一下我修改后的代码:
圈起来的detailpage就是要处理的page。。。。
在这个page的cs文件中上代码:
/// <summary>
/// ///////// ...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Navigation;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
using wp8Note.Resources;
using Microsoft.Phone.Scheduler;
namespace ...
测试机器是820t时,一直正常运行,后来改用920t的时候安装发生了错误:
错误信息:
应用程序安装失败。发生运行时错误。请修复 WMAppManifest.xml 文件中的 Capabilities
弹出alert提示:指定通信资源(端口)已由另一个应用程序使用
于是建立一个空项目,运行在920t上,正常运行。
根据提示WMAppManifest.xml 文件中的 Capabilities的内容,我打开俩项目文件对比
发现在这个位置 配置分辨率处有出入
<ScreenResolutions>
<ScreenResolution Name=&q ...
1.安装xcode
2.安装commad line tools 命令 xcode-select --install
查看ruby版本 版本过低(版本低会导致cocoapods安装不成功)使用如下 rvm 管理
ruby -v
3.使用rvm管理ruby 安装rvm
curl -L get.rvm.io | bash -s stable
source ~/.rvm/scripts/rvm
rvm -v(出现版本号 表示成功)
4.rvm获取远程ruby版本
rvm list known
5.安装指定版本ruby
...
1.二叉树每个节点最多有两个子树的树结构。通常子树被称作“左子树”(left subtree)和“右子树”(right subtree)。二叉树常被用于实现二叉查找树和二叉堆2.平衡二叉树它是一 棵空树或它的左右两个子树的高度差的绝对值不超 ...