我正在尝试更改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>
答案 0 :(得分:2)
您可以将Button
置于可伸展的内容中以填充整个可用空间
<TabControl>
<TabItem Header="Tab" Cursor="Wait">
<Grid Background="Transparent">
<Button Content="qwe" Height="25" />
</Grid>
</TabItem>
</TabControl>
与此示例中的Grid
类似,但请注意,您需要将Background
分配给类似Transparent
的内容,否则它将无法获得可见的测试