user3079834
user3079834

Reputation: 2214

C# Windows Phone 8.1 Clipboard support

I'm wondering if there is a copy to clipboard support in Windows Phone 8.1

Here it says, there is no support (no date) and here it says there is (from June '14)

However if I try to compile

Clipboard.SetText("myClipboard Text");

I only get a compiling error with a missing assembly reference for the namespace Clipboard

Alternatively is there a workaround to still be able, putting text into the Clipboard?

Upvotes: 1

Views: 1097

Answers (1)

Eldar Dordzhiev
Eldar Dordzhiev

Reputation: 5135

Unfortunately, there's no clipboard API in Windows Runtime. You can still use it, if you build Silverlight application, but as MSDN says there's no equalient of this API for Windows Runtime apps.

Upvotes: 3

Related Questions