Quantcast
Channel: かずきのBlog@hatena
Viewing all articles
Browse latest Browse all 1387

Universal Windows Platform appでクリップボード操作

$
0
0

DataPackage作ってデータセットしてクリップボードにセットでOK

privatevoid Copy()
{
    var dp = new DataPackage();
    dp.SetText(this.TextBoxSource.Text);
    Clipboard.SetContent(dp);
}

貼り付けは、クリップボードからDataPackageViewを取得してGetすればOK

private async void Paste()
{
    var dpv = Clipboard.GetContent();
    if (dpv.Contains(StandardDataFormats.Text))
    {
        this.TextBoxDest.Text = await dpv.GetTextAsync();
    }
}

PCでも電話でも動いたので一安心。


Viewing all articles
Browse latest Browse all 1387

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>