TextBlock.IsTextSelectionEnabled 属性

定义

获取或设置一个值,该值指示是否通过用户操作或调用与选择相关的 API 在 TextBlock 中启用文本选择。

public:
 property bool IsTextSelectionEnabled { bool get(); void set(bool value); };
bool IsTextSelectionEnabled();

void IsTextSelectionEnabled(bool value);
public bool IsTextSelectionEnabled { get; set; }
var boolean = textBlock.isTextSelectionEnabled;
textBlock.isTextSelectionEnabled = boolean;
Public Property IsTextSelectionEnabled As Boolean
<TextBlock IsTextSelectionEnabled="bool" />

属性值

Boolean

bool

如果启用文本选择,则为 true;否则为 false

注解

重要

如果在 TextBlock 中使用键盘进行文本选择,则用户必须先在前台使用应用激活 插入点浏览 (,然后按 F7) 。

适用于