I have an design idea about the appearence of a small program , which is basically a windows form with a combo and one button.What i would like to do is the following.When i click on the .exe of the program to start it , i would like to have an non-standart start up of the window.To be more specific i will give you an example – i click on the .exe , upon which some dots appear in a random matter all over the screen , after those points appear they start moving in a spiral way so finally they merge into the standart square windows form shape.So my question is – is there a free API or anything similar with the help of which its easily doable or there would be a lot of work needed from myself to create those API’s ?
Thanks in advance
As SLaks has already said, that will be pretty annoying for the end-users.
If you ask whether it is doable, I would say yes, everything is doable in programming, it all depends on the effort you’re ready to put into.
As a very simple algorithm, here are some steps I would go through for your achievement:
System.Windows.Forms.Form;Form.ShowInTaskBar= false;Form.TransparencyKeyproperty;Form.ControlBox= false;Form.TopMost= true;PictureBoxcontrol on yourForm;Form.Loadevent, take a screenshot of the current desktop and set it as the image of yourPictureBox.animated GIF, and superpose it to your form.You will most likely appreciate, I guess, the following link which discusses about
C# Winforms Animation.Althouth this might be cool to program, users are conservatives and “always anxious” about program startups, so, as already mentioned, this might become pretty annoying for the end-users.
I hope this helps you through anyway!