問題タブ [richeditbox]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
uwp - UWP RichEditBoxでハイパーリンクのクリックをキャッチするには?
XamlIslands を介して WPF アプリケーションに追加される UWP カスタム コンポーネントで RichEditBox を使用しようとしています。
<RichEditBox x:Name="editor" PointerPressed="editor_PointerPressed" Tapped="editor_Tapped" PointerReleased="editor_PointerPressed">
次の方法でハイパーリンクを追加します。
editor.Document.Selection.Link = "\"[the link]\"";
正常に動作し、Ctrl キーを押しながらクリックするとブラウザーでリンクが開きますが、そのクリック イベントをキャッチするにはどうすればよいですか?
RichEditBox でパラメーターとして定義したコールバックは発生しないため、PointerPressed、PointerReleased、および Tapped イベントはまったく発生しません。