程序介绍:
WP7Clipboard是一个在Windows Phone 7模仿共享剪切板的类库。可以从一个应用程序复制一个对象到另外一个应用程序,不使用webservice等。
WP7Clipboard is a library to mimic a shared clipboard on Windows Phone 7. This enables the user to copy objects from one application and post them into another without having to use a webservice/etc.
如何使用:
- Clipboard.SetText("some text I want accessible in another app!");
- if (Clipboard.ContainsText())
- {
- string myVar = Clipboard.GetText();
- }
提示:
请使用ProxyClipboard类来最小化磁盘的使用。查看示例程序。
需要在 Windows 7/Vista 及以上版本操作系统中安装 Windows Phone 开发环境