当前位置: 代码迷 >> Windows Mobile >> WM5上怎么实现短信的发送功能
  详细解决方案

WM5上怎么实现短信的发送功能

热度:117   发布时间:2016-04-25 08:00:22.0
WM5上如何实现短信的发送功能
WM5上如何实现短信的发送功能,一直找不到这个类.郁闷ing.

------解决方案--------------------
SmsSendMessage
------解决方案--------------------
using Microsoft.WindowsMobile;
using Microsoft.WindowsMobile.Status;
using Microsoft.WindowsMobile.PocketOutlook;


SmsMessage msg = new SmsMessage( "13812345678 ", "hi all ");
msg.Send();
------解决方案--------------------
SDK 里面有自带的例子,可以参看这个
??:\Program Files\Windows CE Tools\wce500\Windows Mobile 5.0 Smartphone SDK\Samples\Cs\Smsim
  相关解决方案