RichEditBox.ContentLinkChanged 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在添加、删除或编辑内容链接时发生。
// Register
event_token ContentLinkChanged(TypedEventHandler<RichEditBox, ContentLinkChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void ContentLinkChanged(event_token const* cookie) const;
// Revoke with event_revoker
RichEditBox::ContentLinkChanged_revoker ContentLinkChanged(auto_revoke_t, TypedEventHandler<RichEditBox, ContentLinkChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<RichEditBox,ContentLinkChangedEventArgs> ContentLinkChanged;
function onContentLinkChanged(eventArgs) { /* Your code */ }
richEditBox.addEventListener("contentlinkchanged", onContentLinkChanged);
richEditBox.removeEventListener("contentlinkchanged", onContentLinkChanged);
- or -
richEditBox.oncontentlinkchanged = onContentLinkChanged;
Public Custom Event ContentLinkChanged As TypedEventHandler(Of RichEditBox, ContentLinkChangedEventArgs)
事件类型
Windows 要求
设备系列 |
Windows 10, version 1803 (在 10.0.17134.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v6.0 中引入)
|
注解
重要
此 API 支持内容链接。 高于 Windows 10 版本 1903 的 Windows 版本中不提供启用内容链接的 Windows 功能。 在高于 1903 版本的 Windows 版本中,XAML 文本控件的内容链接将无法正常运行。
此事件发生在 TextChanging 事件之后和 TextChanged 事件之前。