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 7626679
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T05:21:27+00:00 2026-05-31T05:21:27+00:00

I have a label in Code below: <Window.Triggers> <EventTrigger RoutedEvent=Loaded> <BeginStoryboard> <Storyboard FillBehavior=Stop >

  • 0

I have a label in Code below:

 <Window.Triggers>
            <EventTrigger RoutedEvent="Loaded">
                <BeginStoryboard>
                    <Storyboard FillBehavior="Stop" >
                        <DoubleAnimation RepeatBehavior="Forever"
                    Storyboard.TargetName="Transform" 
                    Storyboard.TargetProperty="X" 
                    From="220" To="-1300" Duration="0:0:15" />
                    </Storyboard>
                </BeginStoryboard>
            </EventTrigger>
        </Window.Triggers>

    <StackPanel >
       <Label Content="Hello! your Welcome" HorizontalAlignment="Right" FontSize="11">
                    <Label.RenderTransform>
                        <TranslateTransform   x:Name="Transform" X="0" Y="0"/>
                    </Label.RenderTransform>
       </Label>
    </StackPanel>

the label moves into my window but I want to Change content
of label when the priod is started again.
if you suggest a code with List<> insted of label will be better.

  • 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-31T05:21:28+00:00Added an answer on May 31, 2026 at 5:21 am

    You can run the animation once, then on the completed event change the content of the label, and then continue to run the animation.

    Your code will be more compact, if you move the animation to the resources:

    XAML:

    <Window.Resources>
        <DoubleAnimation x:Key="da"
            Completed="DoubleAnimation_Completed"
            From="220" To="-1300" Duration="0:0:15"
            />
    </Window.Resources>
    
    <StackPanel>
        <Label x:Name="lbl" Content="Hello! your Welcome" HorizontalAlignment="Right" FontSize="11">
            <Label.RenderTransform>
                <TranslateTransform x:Name="Transform" X="0" Y="0"/>
            </Label.RenderTransform>
        </Label>
    </StackPanel>
    

    Code Behind:

        private void DoubleAnimation_Completed( object sender, EventArgs e ) {
            this.lbl.Content = "Second time";
            DoubleAnimation da = this.Resources[ "da" ] as DoubleAnimation;
            TranslateTransform tr = this.Transform;
            da.Completed -= DoubleAnimation_Completed;
            da.RepeatBehavior = RepeatBehavior.Forever;
            tr.BeginAnimation( TranslateTransform.XProperty, da );
        }
    
        private void Window_Loaded( object sender, RoutedEventArgs e ) {
            DoubleAnimation da = this.Resources[ "da" ] as DoubleAnimation;
            TranslateTransform tr = this.Transform;
            tr.BeginAnimation( TranslateTransform.XProperty, da );
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Below are the options that I have in my HTML code: <label id="subn"> <select
I have an element in my window, as below: <Grid> <DockPanel LastChildFill=True> <Label Name=StatisticsLabel
I have some troubles with positioning my label/password field. With this code they both
At the moment I have the following code which works fine. label = new
I have the code to extract the links, but I need the link label
I have several StackPanels that change visibility based on ToggleButtons. The code below works
i have a weird label problem . If i introduce something like the code
Hello i have the code below to upload pictures for my application. I will
I have this code in my view: echo form_label('State', 'state'); $options = array( 'No
I have the following code: if ( (isset($_GET['slAction'])) && ($_GET['slAction'] == manage_label) ) {

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.