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 是焦點範圍,如同 Menu、 ContextMenu和 ToolBar 類別。 焦點範圍的項目已 IsFocusScope 設定為 true
。
如需焦點、鍵盤焦點和邏輯焦點的詳細資訊,請參閱 輸入概觀。