0

我正在为 Windows Mobile 6.5 使用 VS 2008 中的 Pocket VB.NET 创建一个应用程序。我在表格上有一个按钮。当我点击按钮时,我希望电话拨一个预先设置好的号码。我怎么做?

4

1 回答 1

1

起诉 Windows.Mobile.Telephony 命名空间怎么样?

public void Talk(string number)
Member of Microsoft.WindowsMobile.Telephony.Phone

Summary:
Places the phone call, using the specified string phone number.

Parameters:
number: The phone number to dial

只需在您的智能设备项目中添加对 Windows.Mobile.Telephony 的引用(至少针对 Windows Mobile 5 SDK(或 6 或更高版本)):

windows.mobile.telephony

于 2012-11-22T14:38:44.503 回答