【发布时间】:2014-07-03 11:42:37
【问题描述】:
我正在尝试更改 TabItem 光标,但仅当鼠标悬停在按钮上时才会更改。控制区域的其余部分仍显示“箭头”光标。如何解决?
<Window x:Class="WpfApplication4.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<TabControl>
<TabItem Header="Tab" Cursor="Wait">
<Button Content="qwe" Height="25" />
</TabItem>
</TabControl>
</Window>
【问题讨论】: