Project DescriptionWP7Clipboard 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.
It allows you to use code like this:
Clipboard.SetText("some text I want accessible in another app!");
if (Clipboard.ContainsText())
{
string myVar = Clipboard.GetText();
}
Please use the
ProxyClipboard class to minimize disk usage. See the demo app for an example of its usage.
This is still Beta - Please note that the
Image support is still under development/testing but
Text related functionality should work fine.
This code was originally ported from the app
ScratchPad by
Matt Lacey. You can get it in the
Marketplace or watch a video of it at
YouTube.