WPF Storyboard's DoubleAnimation behaves unexpectedlyWhat is the correct way to create a single-instance WPF application?WPF image resourcesIn WPF, what are the differences between the x:Name and Name attributes?How do I exit a WPF application programmatically?Is there a MessageBox equivalent in WPF?Sliding images with finger holding and moving in WPF, just like smartphoneWpf custom window, Windows edge resize featureMouseOver on a button triggered only on its bottomWPF preventing Popup control to consume click eventWPF - Slow performance when recreate and draw very big bitmap frequently

Why is this guy handcuffed censored?

Last-minute canceled work-trip means I'll lose thousands of dollars on planned vacation

Book about an amphibian race at the centre of the Earth

Why aren't there any women super Grandmasters (GMs)?

Do pedestrians imitate automotive traffic?

Counting multiples of 3 up to a given number

Redirection operator, standard input and command parameters

Which modern firearm should a time traveler bring to be easily reproducible for a historic civilization?

Brute-force the switchboard

A Real World Example for Divide and Conquer Method

Weight functions in graph algorithms

Has anyone ever written a novel or short story composed of only dialogue?

Host telling me to cancel my booking in exchange for a discount?

What is a Romeo Word™?

Ethiopian Airlines tickets seem to always have the same price regardless of the proximity of the date?

What is the intuition for higher homotopy groups not vanishing?

Should I have shared a document with a former employee?

ESTA Travel not Authorized. Accepted twice before!

How does mathematics work?

Is art a form of communication?

How far off did Apollo 11 land?

Does the Bracer of Flying Daggers really let a thief make 4 attacks per round?

Soft constraints and hard constraints

Why do we need an estimator to be consistent?



WPF Storyboard's DoubleAnimation behaves unexpectedly


What is the correct way to create a single-instance WPF application?WPF image resourcesIn WPF, what are the differences between the x:Name and Name attributes?How do I exit a WPF application programmatically?Is there a MessageBox equivalent in WPF?Sliding images with finger holding and moving in WPF, just like smartphoneWpf custom window, Windows edge resize featureMouseOver on a button triggered only on its bottomWPF preventing Popup control to consume click eventWPF - Slow performance when recreate and draw very big bitmap frequently






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I'm using WPF Storyboard to slide my window from the right corner of the screen and then to hide it again.



I have three problems:



  1. If you catch window that is currently sliding right it slows down.

  2. Sometimes(very rarely, so it's hard to find the reason) window only hides its half and animation stops. If you enter the window by a mouse and leave again it hides the rest of it.

  3. Sometimes when I reach the edge of the screen to show the window nothing happens for a while and then window slides very fast to the correct position.

MouseOnEdge is my custom event which is fired when mouse reaches the right corner of the screen.



That's my XAML code:



<local:CustomWindow.Triggers>
<EventTrigger RoutedEvent="local:CustomWindow.CustomMouseLeave">
<BeginStoryboard>
<Storyboard Name="SlideWindowOff">
<DoubleAnimation
Storyboard.TargetName="ShellViewWindow" Storyboard.TargetProperty="Left"
Duration="0:0:0.75"
AccelerationRatio="0.5"
From="Binding WindowLeft"
To="Binding WindowLeftHidden"/>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
<EventTrigger RoutedEvent="local:CustomWindow.MouseOnEdge">
<BeginStoryboard>
<Storyboard Name="SlideWindowOn">
<DoubleAnimation
Storyboard.TargetName="ShellViewWindow" Storyboard.TargetProperty="Left"
Duration="0:0:0.75"
AccelerationRatio="0.5"
From="Binding WindowLeft"
To="Binding WindowLeftUnhidden"/>
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</local:CustomWindow.Triggers>


Why is something like this happening? The main problem here is when storyboard hides only half of the window and it's going to be the biggest problem for users.










share|improve this question




























    1















    I'm using WPF Storyboard to slide my window from the right corner of the screen and then to hide it again.



    I have three problems:



    1. If you catch window that is currently sliding right it slows down.

    2. Sometimes(very rarely, so it's hard to find the reason) window only hides its half and animation stops. If you enter the window by a mouse and leave again it hides the rest of it.

    3. Sometimes when I reach the edge of the screen to show the window nothing happens for a while and then window slides very fast to the correct position.

    MouseOnEdge is my custom event which is fired when mouse reaches the right corner of the screen.



    That's my XAML code:



    <local:CustomWindow.Triggers>
    <EventTrigger RoutedEvent="local:CustomWindow.CustomMouseLeave">
    <BeginStoryboard>
    <Storyboard Name="SlideWindowOff">
    <DoubleAnimation
    Storyboard.TargetName="ShellViewWindow" Storyboard.TargetProperty="Left"
    Duration="0:0:0.75"
    AccelerationRatio="0.5"
    From="Binding WindowLeft"
    To="Binding WindowLeftHidden"/>
    </Storyboard>
    </BeginStoryboard>
    </EventTrigger>
    <EventTrigger RoutedEvent="local:CustomWindow.MouseOnEdge">
    <BeginStoryboard>
    <Storyboard Name="SlideWindowOn">
    <DoubleAnimation
    Storyboard.TargetName="ShellViewWindow" Storyboard.TargetProperty="Left"
    Duration="0:0:0.75"
    AccelerationRatio="0.5"
    From="Binding WindowLeft"
    To="Binding WindowLeftUnhidden"/>
    </Storyboard>
    </BeginStoryboard>
    </EventTrigger>
    </local:CustomWindow.Triggers>


    Why is something like this happening? The main problem here is when storyboard hides only half of the window and it's going to be the biggest problem for users.










    share|improve this question
























      1












      1








      1








      I'm using WPF Storyboard to slide my window from the right corner of the screen and then to hide it again.



      I have three problems:



      1. If you catch window that is currently sliding right it slows down.

      2. Sometimes(very rarely, so it's hard to find the reason) window only hides its half and animation stops. If you enter the window by a mouse and leave again it hides the rest of it.

      3. Sometimes when I reach the edge of the screen to show the window nothing happens for a while and then window slides very fast to the correct position.

      MouseOnEdge is my custom event which is fired when mouse reaches the right corner of the screen.



      That's my XAML code:



      <local:CustomWindow.Triggers>
      <EventTrigger RoutedEvent="local:CustomWindow.CustomMouseLeave">
      <BeginStoryboard>
      <Storyboard Name="SlideWindowOff">
      <DoubleAnimation
      Storyboard.TargetName="ShellViewWindow" Storyboard.TargetProperty="Left"
      Duration="0:0:0.75"
      AccelerationRatio="0.5"
      From="Binding WindowLeft"
      To="Binding WindowLeftHidden"/>
      </Storyboard>
      </BeginStoryboard>
      </EventTrigger>
      <EventTrigger RoutedEvent="local:CustomWindow.MouseOnEdge">
      <BeginStoryboard>
      <Storyboard Name="SlideWindowOn">
      <DoubleAnimation
      Storyboard.TargetName="ShellViewWindow" Storyboard.TargetProperty="Left"
      Duration="0:0:0.75"
      AccelerationRatio="0.5"
      From="Binding WindowLeft"
      To="Binding WindowLeftUnhidden"/>
      </Storyboard>
      </BeginStoryboard>
      </EventTrigger>
      </local:CustomWindow.Triggers>


      Why is something like this happening? The main problem here is when storyboard hides only half of the window and it's going to be the biggest problem for users.










      share|improve this question














      I'm using WPF Storyboard to slide my window from the right corner of the screen and then to hide it again.



      I have three problems:



      1. If you catch window that is currently sliding right it slows down.

      2. Sometimes(very rarely, so it's hard to find the reason) window only hides its half and animation stops. If you enter the window by a mouse and leave again it hides the rest of it.

      3. Sometimes when I reach the edge of the screen to show the window nothing happens for a while and then window slides very fast to the correct position.

      MouseOnEdge is my custom event which is fired when mouse reaches the right corner of the screen.



      That's my XAML code:



      <local:CustomWindow.Triggers>
      <EventTrigger RoutedEvent="local:CustomWindow.CustomMouseLeave">
      <BeginStoryboard>
      <Storyboard Name="SlideWindowOff">
      <DoubleAnimation
      Storyboard.TargetName="ShellViewWindow" Storyboard.TargetProperty="Left"
      Duration="0:0:0.75"
      AccelerationRatio="0.5"
      From="Binding WindowLeft"
      To="Binding WindowLeftHidden"/>
      </Storyboard>
      </BeginStoryboard>
      </EventTrigger>
      <EventTrigger RoutedEvent="local:CustomWindow.MouseOnEdge">
      <BeginStoryboard>
      <Storyboard Name="SlideWindowOn">
      <DoubleAnimation
      Storyboard.TargetName="ShellViewWindow" Storyboard.TargetProperty="Left"
      Duration="0:0:0.75"
      AccelerationRatio="0.5"
      From="Binding WindowLeft"
      To="Binding WindowLeftUnhidden"/>
      </Storyboard>
      </BeginStoryboard>
      </EventTrigger>
      </local:CustomWindow.Triggers>


      Why is something like this happening? The main problem here is when storyboard hides only half of the window and it's going to be the biggest problem for users.







      c# wpf






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 26 at 12:06









      ArturArtur

      226 bronze badges




      226 bronze badges






















          0






          active

          oldest

          votes










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55356762%2fwpf-storyboards-doubleanimation-behaves-unexpectedly%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55356762%2fwpf-storyboards-doubleanimation-behaves-unexpectedly%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

          155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해