Answers for "c# wpf get clipboard text"

C#
0

c# wpf get clipboard text

//for wpf
using System.Windows;

Clipboard.GetText() //gets Text as string
Clipboard.SetText("hello"); //sets Clipboard to "hello"
Posted by: Guest on January-10-2022

C# Answers by Framework

Browse Popular Code Answers by Language