RichTextBox for WPF
クリップボード機能
RichTextBox for WPF の使い方 > カスタムコマンドバー > クリップボード機能

次のコードスニペットは、クリップボード機能に使用されるコードを示しています。

コピー

C#
コードのコピー
rtb.ClipboardCopy();
Paste
if(!rtb.IsReadOnly)
{
    rtb.ClipboardPaste();
}

貼り付け

Example Title
コードのコピー
if(rtb.IsReadOnly)
    rtb.ClipboardCopy();
else
{
    rtb.ClipboardCut();
}