GithubHelp home page GithubHelp logo

dot-net-transitions's People

Watchers

 avatar

dot-net-transitions's Issues

Chained transitions

Ability to create multiple transitions and chain them together. The
"manager" / "chainer" waits for the completed event from each one and then
starts the next one.

Original issue reported on code.google.com by [email protected] on 9 Jul 2009 at 9:05

Next transitions won't work after an "un-expected" Close() from Form that is running an transition.

What steps will reproduce the problem?
1. Create 2 forms.
2. In second form adds one textbox, use a backcolor transition
3. button to start the transition with 5000 ms.
4. in main form create any other transition.
5. run program
6. open the second form, run the transition, close the form in middle of 
transition.
7. try run the main form transition. (Isn't works! =\)

What is the expected output? What do you see instead?
Expect to work all the transitions

What version of the product are you using? On what operating system?
I'm using Windows 7 (build 7600)

Please provide any additional information below.
I think, that transition in second form ever end. so the api can run next 
transition.

Thanks again for a nice tool.

Original issue reported on code.google.com by [email protected] on 29 Aug 2009 at 6:11

error using the library

I'm trying to use the library to an windows mobile aplication.
I've had reference to the dll file
and i try to use the first example:
Transition.run(this, "BackColor", Color.Red, new TransitionType_Linear(1000))

This is the error:
Could not load type 'Transitions.Transition' from assembly 'Transitions,
Version=1.2.0.0, Culture=neutral, PublicKeyToken=null'.


Original issue reported on code.google.com by [email protected] on 11 Nov 2009 at 1:15

.net transitions with WPF

What steps will reproduce the problem?
1. Using transition on a WPF window, passing 'Window.Left' to transition.
2. I had a Invalid cast exception in 
getIntermediateValue(object start, object end, double dPercentage)
when casting 'end'
3. I corrected this fault by using Convert.toDouble()
4. But doesn't seem to work

What is the expected output? What do you see instead?
I would like to have a linear transition like in Winform. The WPF window 
doesn't move at all. The code for the transition is exactly the same as your 
main page:
Transition.run(main_window, "Left", 1000, new 
TransitionType_Deceleration(2000));

What version of the product are you using? On what operating system?
Last version 1.2, WIN64


Please provide any additional information below.
I tried with a Winform, it work pretty well.

Original issue reported on code.google.com by [email protected] on 2 Jun 2014 at 5:31

Drawn Text Gets Corrupted After Animation

What steps will reproduce the problem?
1. Add a panel to a form and use AddHandler Panel1.Paint event to custom draw 
text into the panel within the load event.
2. Add a new Transition after the handler using EaseInEaseOut to adjust the 
width of the form from 5 to say 600 (to give growing effect)
3. Load a new instance of the form and let the Transition run

What is the expected output? What do you see instead?
Expected output is nicely formatted text, instead the text is corrupted due to 
the animation.


What version of the product are you using? On what operating system?
Using version 1.2.0.0


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 20 Nov 2014 at 7:02

I'm add more Easing for you.

Thanks a lot for your files, that's help me many things
But... i'm add some easing in your project such as  new Bounce, Quart, Quint, 
Cubic, Quad.
sorry for Elastic, expo and back, I tried, it's too hard for me.
I don't take any credit at all... thanks.

Original issue reported on code.google.com by [email protected] on 19 Jan 2014 at 6:24

Attachments:

Licence and publishing

Hi,

I would like to use your nice project in my open source library 
(http://shutternotifier.codeplex.com/, it'll be published in 2-3 days), your 
url is included in the Resources section and your licence is commited to 
subversion and packed with the full source code version.

Please contact me via codeplex or this tracker.

Best regards,
boj


Original issue reported on code.google.com by [email protected] on 3 Aug 2011 at 8:35

Transitions.dll stops working.

I've been using this awesome program for a while now with no problems. However 
after I added quite alot of new forms it stopped working as well. For example, 
when playing a transition, either the transition will stop playing in the 
middle of it or it will not run at all. Please help me fix this as i dont want 
to get rid of all my hard work. :(

Original issue reported on code.google.com by [email protected] on 3 Apr 2014 at 7:45

problem with form transitions

first, Amazing code... Great Job... ;)

i just have a question, imagine the situation:

i have a form with a form_mouseLeave and form_mouseEnter transition. the 
problem is that when the mouse is over a certain child control, lets say a 
button, the form will do the form_mouseLeave action.

the way that i make it work was adding the following code:

foreach (Control control in Controls)
{
control.MouseEnter += new EventHandler(form_mouseEnter);
}


with this i forced the child control to execute the transition, but since all 
transitions have the time duration, when the form is performing the 
form_mouseEnter transition and i put the mouse hover the button, it restart the 
transition. making it very slow, since the path to travel is smaller for the 
same period of time.

is it a way to bypass this?! lets say, for example put some sort of a 
validation that when the mouse is hover the button it resumes the transition 
instead of restarting it?!

thx, and once again... excellent code!


Original issue reported on code.google.com by [email protected] on 18 Oct 2010 at 4:10

Minor errors in the source comments

    /// We manage the transaction timer here so that we can have a single timer
    /// across all transactions. If each transaction has its own timer,
this creates
    /// one thread for each transaction, and this can lead to too many
threads in
    /// an application.

I think you wanted to say "transition". Took a couple of seconds to figure out!

Like the idea and looks of the code, going to try it out in a project I have.

Original issue reported on code.google.com by [email protected] on 5 Sep 2009 at 11:46

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.