WEB开发网
开发学院手机开发Windows Mobile 开发 Windows Mobile 5.0 SDk Demo 分析 :2 SmsIM 阅读

Windows Mobile 5.0 SDk Demo 分析 :2 SmsIM

 2010-02-08 21:12:00 来源:WEB开发网   
核心提示:功能: 接受和发送短信,并在同一页面上模拟显示通信内容发送:从联系人名单中选择contact然后发信息给他接收:开机后随时监听是否收到信息,Windows Mobile 5.0 SDk Demo 分析 :2 SmsIM,收到后进行显示实现:本程序包含一个private类:Conversation 用来模拟显示一次短信接

功能: 接受和发送短信,并在同一页面上模拟显示通信内容

发送:从联系人名单中选择contact然后发信息给他

接收:开机后随时监听是否收到信息,收到后进行显示

实现:

本程序包含一个private类:Conversation 用来模拟显示一次短信接发的信息包括:联系人、电话号码、短息

内容。可以通过Contact、PhoneNumber、Transcript属性分别进行访问。

发送:

1.添加联系人

点击 Add name,调用CreateNewConversation方法

打开选择联系人窗口:

ChooseContactDialog dlg = new ChooseContactDialog();

dlg.RequiredProperties = new ContactProperty[] {ContactProperty.AllTextMessaging };

选定联系人后添加到联系人列表中并创建一个Conversation实例。

2.填写message

首先调用SwitchToConversation方法,将刚才创建的conversation实例作为信息发送的目的地址。

并将焦点跳到填写信息处。

3.发送message

点击send,调用SmsMessage的Send方法进行发送

// Send the SMS message

SmsMessage msg = new SmsMessage(NormalizePhoneNumber(conv.PhoneNumber), txtMsgToSend.Text);

msg.Send();

其中NormalizePhoneNumber方法用来将联系人的号码中非数字的信息剔除

然后模拟显示信息并清空填写信息文本框

接收:

1.FormLoad时候初始化一个MessageInterceptor

类成员变量:private MessageInterceptor interceptor;

//初始化并注册一个信息收到的处理方法 OnSmsReceived

interceptor = new MessageInterceptor();

interceptor.InterceptionAction = InterceptionAction.NotifyAndDelete;

interceptor.MessageReceived += new MessageInterceptorEventHandler(OnSmsReceived);

2.当收到短信时,MessageInterceptor对象的事件处理方法:OnSmsReceived

private void OnSmsReceived(object sender, MessageInterceptorEventArgs e)

收到的短息信息全在(msg=)e.Message 中

检查发送信息的地址(msg.)

如果是联系人列表中的成员:

1 2  下一页

Tags:Windows Mobile SDk

编辑录入:coldstar [复制链接] [打 印]
赞助商链接