FocusManager.GetIsFocusScope(DependencyObject) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
确定指定的 DependencyObject 是否为焦点范围。
public:
static bool GetIsFocusScope(System::Windows::DependencyObject ^ element);
public static bool GetIsFocusScope (System.Windows.DependencyObject element);
static member GetIsFocusScope : System.Windows.DependencyObject -> bool
Public Shared Function GetIsFocusScope (element As DependencyObject) As Boolean
参数
- element
- DependencyObject
从中读取附加属性的元素。
返回
如果指定元素上的 IsFocusScope 设置为 true
,则为 true
;否则为 false
。
注解
焦点范围是一个容器元素,用于跟踪其范围内的 FocusManager.FocusedElement。 默认情况下,Window类与 、 ContextMenu和 ToolBar 类一样Menu是焦点范围。 作为焦点范围的元素已 IsFocusScope 设置为 true
。
有关焦点、键盘焦点和逻辑焦点的详细信息,请参阅 输入概述。