Display not well while animation in .net c# -


i'm using .net 4.0 , i'm working slide animation in .net. thicknessanimation used slide animation. there no defects working this. animated. duration set 0.5 sec. animation showing not well, edges , fills showing blur or crackle. want animate object smooth , well. , slide animation windows 8 screen. select programs slide.

below shows image.

http://i.stack.imgur.com/8grem.jpg

below shows code window 8 slide animation

       thicknessanimation tk = new thicknessanimation();         tk.from = new thickness(0, 0, 0, 0);         tk.to = new thickness(-900, 0, 0, 0);         tk.duration = new duration(timespan.fromseconds(1));          storyboard.settarget(tk, main_1);         storyboard.settargetproperty(tk, new  propertypath(frameworkelement.marginproperty));         storyboard sb = new storyboard();         sb.children.add(tk);         sb.begin(); 

please me this....


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -