This only happens when I set the background to Transparent, which is the effect I need. For example, changing the background for AliceBlue allows the trigger to take effect. What could be missing here backstage?
<Window
AllowsTransparency="True"
Background="Transparent">
<Window.Style>
<Style>
<Style.Triggers>
<Trigger Property="Window.IsActive" Value="True">
<Setter Property="Window.Cursor" Value="ArrowCD" />
</Trigger>
</Style.Triggers>
</Style>
</Window.Style>
<Grid VerticalAlignment="Center" HorizontalAlignment="Center">
<TextBlock>
Some Text
</TextBlock>
</Grid>
</Window>
source
share