Clipboard
public static class ClipboardSupported platforms
Example
using XPlat.ApplicationModel.DataTransfer;
...
private void CopyNoteTextToClipboard(Note note)
{
Clipboard.SetText(note.ToString());
}
private async Task CopyTextToNote(Note note)
{
note.Text = await Clipboard.GetTextAsync();
}Static Methods
GetContent()
Returns
GetTextAsync()
Returns
SetContent(DataPackage)
Parameters
SetText(string)
Parameters
Clear()
Static Events
ContentChanged
Related information
References
Last updated