Trigger Property=FrameworkElement.IsFocused : EventTrigger « Windows Presentation Foundation « C# / C Sharp






Trigger Property=FrameworkElement.IsFocused

Trigger Property=FrameworkElement.IsFocused
     

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
    <Page.Resources>
        <Style x:Key="widthOnFocus">
          <Style.Triggers>
            <Trigger Property="FrameworkElement.IsFocused" Value="True">
              <Trigger.EnterActions>
                <BeginStoryboard Name="changeWidth">
                  <Storyboard>
                    <DoubleAnimation Storyboard.TargetProperty="(FrameworkElement.Width)" To="300" Duration="0:0:5" />
                  </Storyboard>
                </BeginStoryboard>
              </Trigger.EnterActions>
              <Trigger.ExitActions>
                <RemoveStoryboard BeginStoryboardName="changeWidth" />
              </Trigger.ExitActions>
            </Trigger>
          </Style.Triggers>
        </Style>
    </Page.Resources>
    
    <StackPanel>
      <TextBox Style="{StaticResource widthOnFocus}" Width="200" />
    </StackPanel>


</Page>

   
    
    
    
    
  








Related examples in the same category

1.Use Triggers to Play Audio When a User Interacts with a ControlUse Triggers to Play Audio When a User Interacts with a Control
2.Style With MultiTriggerStyle With MultiTrigger
3.Starting an animation with a triggerStarting an animation with a trigger
4.Pausing and resuming a storyboard with triggersPausing and resuming a storyboard with triggers
5.EventTrigger Ellipse.MouseLeftButtonDownEventTrigger Ellipse.MouseLeftButtonDown
6.EventTrigger Ellipse.MouseLeftButtonUpEventTrigger Ellipse.MouseLeftButtonUp
7.Playing a sound with a triggerPlaying a sound with a trigger