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;
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:
- If you catch window that is currently sliding right it slows down.
- 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.
- 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
add a comment |
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:
- If you catch window that is currently sliding right it slows down.
- 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.
- 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
add a comment |
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:
- If you catch window that is currently sliding right it slows down.
- 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.
- 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
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:
- If you catch window that is currently sliding right it slows down.
- 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.
- 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
c# wpf
asked Mar 26 at 12:06
ArturArtur
226 bronze badges
226 bronze badges
add a comment |
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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.
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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