桌面窗口移动通信移动通信、桌面、窗口

2023-09-06 13:08:05 作者:暗恋计划失败

我想打一个桌面应用程序触发了Windows Mobile 6标准设备(智能手机)上的事件。

I want to make a desktop application trigger an event on a Windows Mobile 6 standard device (smartphone).

我怎样才能使智能手机和桌面进行沟通?

How can I make the smartphone and desktop communicate?

我在哪里可以找到这方面的一些code的例子吗?我使用C#...

Where can I find some code examples of this? I'm using C#...

要澄清:

这将不停靠USB。我想使用无线局域网。

It will not be docked with USB. I would like to use WLAN.

我想触发是在智能手机上已经运行在我的应用程序的事件。

I want to trigger an event within my application that is already running on the smartphone.

推荐答案

一种解决方案是使用RAPI。如果这样做,那么看看RAPI通信库在 OpenNETCF 。这是一个C#包装的SDK的功能。

One solution is to use RAPI. If you do so, then have a look at RAPI communication library at OpenNETCF. This is a C# wrapper for the SDK functions.

使用RAPI,你可以做到以下几点:

With RAPI you can do the following:

复制文件从桌面到移动设备,反之亦然 从桌面上启动一个程序在移动设备

我想这将是很难有使用RAPI信息交换机制。这将是更容易使用蓝牙或Wi-Fi通信用于此目的。一个很好的例子是这的文章在code项目。

I suppose it would be difficult to have a message exchange mechanism using RAPI. It would be easier to use Bluetooth or Wi-Fi communication for this purpose. A nice example is this article at Code Project.

 
精彩推荐