FocusManager.IsFocusScope 附加属性

定义

确定此属性附加到的元素是否是焦点范围。

see GetIsFocusScope, and SetIsFocusScope
see GetIsFocusScope, and SetIsFocusScope
see GetIsFocusScope, and SetIsFocusScope

示例

以下示例创建一个 StackPanel 焦点范围。

<StackPanel Name="focusScope1" 
            FocusManager.IsFocusScope="True"
            Height="200" Width="200">
  <Button Name="button1" Height="50" Width="50"/>
  <Button Name="button2" Height="50" Width="50"/>
</StackPanel>

注解

焦点范围是一个容器元素,用于跟踪其范围内的 FocusManager.FocusedElement。 默认情况下,Window类与 、 ContextMenuToolBar 类一样Menu是焦点范围。 作为焦点范围的元素已 IsFocusScope 设置为 true

有关焦点、键盘焦点和逻辑焦点的详细信息,请参阅 输入概述

依赖项属性信息

标识符字段 IsFocusScopeProperty
元数据属性设置为 true

适用于