我有一个WPF网格,其中包含一个按钮。
默认情况下,该按钮处于隐藏状态,只有当鼠标位于网格上时才会显示该按钮。 (在功能上,网格是标题页,“消失”按钮是关闭按钮)。我还重写了按钮模板以获得自定义的感觉。
现在,当我的鼠标进入网格时,该按钮变为可见,但只要鼠标进入按钮就会消失。我的直觉是,当鼠标移动到按钮时,Grid的IsMouseOver变为False。有办法解决这个问题吗?
<ControlTemplate x:Key="CloseTabButtonTemplate">
<Border Width="14" Height="14" Margin="3"
HorizontalAlignment="Right"
VerticalAlignment="Center"
BorderThickness="1"
CornerRadius="2,2,2,2">
<TextBlock Text="x" VerticalAlignment="Center" HorizontalAlignment="Center"
FontSize="11" Padding="0" Margin="0,-2,0,0" Foreground="White"/>
<Border.Style>
<Style TargetType="{x:Type Border}">
<Setter Property="Background" Value="#33DA3030"/>
<Setter Property="BorderBrush" Value="White"/>
<Setter Property="Visibility" Value="Hidden"/>
<Style.Triggers>
<DataTrigger Binding="{Binding RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type Grid}},Path=IsMouseOver}" Value="True">
<Setter Property="Visibility" Value="Visible" />
</DataTrigger>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#FFDA3030"/>
<Setter Property="Visibility" Value="Visible" />
</Trigger>
</Style.Triggers>
</Style>
</Border.Style>
</Border>
</ControlTemplate>
<Button Grid.Column="2" HorizontalAlignment="Right" Template="{StaticResource CloseTabButtonTemplate}">x</Button>
谢谢!
答案 0 :(得分:2)
我认为这里没有问题。我用一个带网格的简单窗口测试了它:
<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300"
>
<Window.Resources>
<ControlTemplate x:Key="CloseTabButtonTemplate">
.... Your template as in the question ....
</ControlTemplate>
</Window.Resources>
<Grid x:Name="MainGrid" Width="200" Height="200" Background="Transparent">
<Button Template="{StaticResource CloseTabButtonTemplate}" />
</Grid>
</Window>
父网格可能缺少Background
颜色?如你所见,我已经制作了Grid
Transparent
。当我删除它时,它不会显示按钮。
或许添加更多代码?