How to Set Clipboard text (Copy Paste) programmatically in Windows Phone ?

If you have to set the Clipboard text programmatically in your Windows Phone, you can use the Clipboard Class that is defined in the System.Windows Namespace.

Clipboard is a static class that exposes 3 properties

1. ContainsText

2. GetText

3. SetText

How to Set Clipboard text (Copy Paste) programmatically in Windows Phone ?

You can use the Clipboard.SetText to set the text for the clipboard .

Clipboard.SetText("www.developerpublish.com");

There is also a restriction to use the Clipboard.GetText which results in the SecurityException.

To test if the Clipboard has the value that you set, just paste the data to a textbox after using the Clipboard.SetText

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

In this post, you will learn about sync provider notifications in Windows 11 and how to disable or enable it...
In this tutorial, let’s learn how to enable or disable the startup sound in Windows 11. By default, when Windows...
The CameraCaptureTask allows the Windows Phone 7 App to launch the Camera Application . This will be useful when the...