FrameworkContentElement.ForceCursor 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出這 FrameworkContentElement 是否應該強制使用者介面 (UI) ,將游標轉譯為這個實例的 Cursor 屬性所宣告。
public:
property bool ForceCursor { bool get(); void set(bool value); };
public bool ForceCursor { get; set; }
member this.ForceCursor : bool with get, set
Public Property ForceCursor As Boolean
屬性值
如果要在游標位於此項目上方時,強制游標展示使用此執行個體的游標設定 (包括在所有子項目上) 則為 true
,否則為 false
。 預設值是 false
。
範例
下列範例會強制游標在 元素上方。
<StackPanel
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
>
<StackPanel Name="CursorForced" ForceCursor="true" Cursor="Hand">
<Label>Cursors Forced</Label>
<TextBox>Fill me in!</TextBox>
</StackPanel>
<StackPanel Name="CursorNotForced">
<Label>Cursors Not Forced</Label>
<TextBox>Fill me in!</TextBox>
</StackPanel>
</StackPanel>
備註
將此屬性設定為 true
會覆寫子專案所建立的資料指標喜好設定。 在一般應用程式 UI 中這樣做可能會對使用者造成混淆,特別是當子項目嘗試指定資料指標時。 在控制項子類別或組合案例中,設定 ForceCursor 更適合。
相依性屬性資訊
識別碼欄位 | ForceCursorProperty |
設定為 的中繼資料屬性 true |
無 |