Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7547899
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T09:34:23+00:00 2026-05-30T09:34:23+00:00

I want something to happen when the window gains focus. However, this doesn’t seem

  • 0

I want something to happen when the window gains focus. However, this doesn’t seem to work:

<Window x:Class="Sample.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" Background="Black"
        Opacity="0.5">
    <Grid>

    </Grid>
    <Window.Style>
        <Style>
            <Style.Triggers>
                <Trigger Property="Window.IsActive" Value="true">
                    <Setter Property="Control.Background" Value="Blue" />
                    <Setter Property="Window.Title" Value="Testing" />
                </Trigger>
            </Style.Triggers>
        </Style>
    </Window.Style>

</Window>

On the other hand, if I replace the setters with an animations on the {Enter,Exit}Actions things seem to work.

<Window x:Class="Sample.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" Background="Black"
        Opacity="0.5">
    <Grid>

    </Grid>
    <Window.Style>
        <Style>
            <Style.Triggers>
                <Trigger Property="Window.IsActive" Value="true">
                    <Trigger.EnterActions>
                        <BeginStoryboard>
                            <Storyboard>
                                <ColorAnimation Storyboard.TargetProperty="Background.Color"
                                                To="Blue" Duration="0:0:1" />
                                <ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="Title">
                                    <DiscreteObjectKeyFrame Value="Testing" />
                                </ObjectAnimationUsingKeyFrames>
                            </Storyboard>
                        </BeginStoryboard>
                    </Trigger.EnterActions>
                    <Trigger.ExitActions>
                        <BeginStoryboard>
                            <Storyboard>
                                <ColorAnimation Storyboard.TargetProperty="Background.Color"
                                                To="Black" Duration="0:0:1" />
                                <ObjectAnimationUsingKeyFrames Storyboard.TargetProperty="Title">
                                    <DiscreteObjectKeyFrame Value="Window1" />
                                </ObjectAnimationUsingKeyFrames>
                            </Storyboard>
                        </BeginStoryboard>
                    </Trigger.ExitActions>
                </Trigger>
            </Style.Triggers>
        </Style>
    </Window.Style>

</Window>

I suppose that this workaround is sufficient for my purposes, but I would like to understand why the “simple” way doesn’t work.

P.S. I can’t quite get the syntax highlighting to work completely… It seems to give up after a few levels of indention.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T09:34:25+00:00Added an answer on May 30, 2026 at 9:34 am

    If you want to switch some property value with triggers based on some condition, you need to set those properties’ default value in the style itself otherwise no matter what values you set in your setter the properties’ value will always be overridden by the local values of those properties due to dependency property value precedence. In your case you need to set the value of Background and Title in your style like this –

    <Window x:Class="Sample.Window1"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Height="300" Width="300" Opacity="0.5">
        <Grid>
        </Grid>
        <Window.Style>
            <Style>
                <Setter Property="Control.Background" Value="Black"/>
                <Setter Property="Window.Title" Value="Window1" />
                <Style.Triggers>
                    <Trigger Property="Window.IsActive" Value="true">
                        <Setter Property="Control.Background" Value="Blue" />
                        <Setter Property="Window.Title" Value="Testing" />
                    </Trigger>
                </Style.Triggers>
            </Style>
        </Window.Style>
    </Window>
    

    Also, you can omit setting the value, let the trigger set for you those values. This would work too(Background and Title omitted at the time of window declaration) –

    <Window x:Class="Sample.Window1"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Height="300" Width="300" Opacity="0.5">
        <Grid>
        </Grid>
        <Window.Style>
            <Style>
                <Style.Triggers>
                    <Trigger Property="Window.IsActive" Value="true">
                        <Setter Property="Control.Background" Value="Blue" />
                        <Setter Property="Window.Title" Value="Testing" />
                    </Trigger>
                </Style.Triggers>
            </Style>
        </Window.Style>
    </Window>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an keyup handler. I want something to happen every time I press
I want something like the following: foo.should_receive(:bar).with(an_instance_of(Bla))..... Is this possible? Edit: According to the
I want something like this: abcdab.search(/a/g) //return [0,4] Is it possible?
what I want to accomplish is something like the one described in this this
I want to remove focus from my wpf window and set the focus back
I want something like the following but would like it to be reusable for
I want something that will receive me the processes details, like I receive with
I want something like a canvas, but where i'd be able to manipulate pixels
I want something to put in my .htaccess file that will hide the .php
I basically want something like: TextView Button Button . . . TextView TextView SeekBar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.