如何更改TabItem的光标

时间:2014-07-03 11:42:38

标签: c# .net wpf xaml

我正在尝试更改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>

1 个答案:

答案 0 :(得分:2)

您可以将Button置于可伸展的内容中以填充整个可用空间

<TabControl>
    <TabItem Header="Tab" Cursor="Wait">
        <Grid Background="Transparent">
            <Button Content="qwe" Height="25" />
        </Grid>
    </TabItem>
</TabControl>

与此示例中的Grid类似,但请注意,您需要将Background分配给类似Transparent的内容,否则它将无法获得可见的测试