ContentElement.IsFocused 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得值,決定這個項目是否具有邏輯焦點。
public:
property bool IsFocused { bool get(); };
public bool IsFocused { get; }
member this.IsFocused : bool
Public ReadOnly Property IsFocused As Boolean
屬性值
如果這個項目具有邏輯焦點,則為 true
;否則為 false
。
範例
下列範例會建立一個樣式,預設可設定 Paragraph 焦點,並在收到焦點時提供視覺行為。
<Style x:Key="FocusableParagraph" TargetType="{x:Type Paragraph}">
<Setter Property="Focusable" Value="true"/>
<Style.Triggers>
<Trigger Property="IsFocused" Value="True">
<Setter Property = "Background" Value="{StaticResource BlueGreenBrush}"/>
</Trigger>
</Style.Triggers>
</Style>
備註
如果應用程式有多個焦點分割,例如功能表內容與應用程式的其餘部分,邏輯焦點可能會與鍵盤焦點不同。 在此案例中,鍵盤焦點只能位於應用程式 UI 的一個專案上,不過,其他焦點分割中的某些元素仍可能會保留邏輯焦點。 如需邏輯焦點的詳細資訊,請參閱 輸入概觀 和 焦點概觀。
相依性屬性資訊
識別碼欄位 | IsFocusedProperty |
中繼資料屬性設定為 true |
無 |