WP7 Clipboard(剪切板)源碼下載
程序介紹:
WP7Clipboard是一個在Windows Phone 7模仿共享剪切板的類庫??梢詮囊粋€應(yīng)用程序復(fù)制一個對象到另外一個應(yīng)用程序,不使用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 及以上版本操作系統(tǒng)中安裝 Windows Phone 開發(fā)環(huán)境















 
 
 


 
 
 
 