PasswordBox.Paste イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
テキストがコントロールに貼り付けられたときに発生します。
public:
virtual event TextControlPasteEventHandler ^ Paste;
// Register
event_token Paste(TextControlPasteEventHandler const& handler) const;
// Revoke with event_token
void Paste(event_token const* cookie) const;
// Revoke with event_revoker
PasswordBox::Paste_revoker Paste(auto_revoke_t, TextControlPasteEventHandler const& handler) const;
public event TextControlPasteEventHandler Paste;
function onPaste(eventArgs) { /* Your code */ }
passwordBox.addEventListener("paste", onPaste);
passwordBox.removeEventListener("paste", onPaste);
- or -
passwordBox.onpaste = onPaste;
Public Custom Event Paste As TextControlPasteEventHandler
<PasswordBox Paste="eventhandler"/>
イベントの種類
注釈
Paste イベントは、コンテンツがコントロールに挿入される前に発生します。 このイベントを処理して、クリップボードの内容をチェックし、挿入する前にコンテンツに対してアクションを実行できます。 何らかのアクションを実行する場合は、handled プロパティを true に設定します。それ以外の場合は、既定の貼り付けアクションが実行されます。 handled プロパティを true に設定すると、アプリが挿入を処理したと見なされ、既定のアクションは実行されません。 挿入する挿入ポイントとクリップボードのコンテンツを決定し、コンテンツを挿入する必要があります。