Skip to main content

Slide-down animation in StackPanel - WPF (C#) -


i trying create animation in stackpanel control when new children-windows added stackpanel, sliding down animation occurs. in vertical list-styled stackpanel.

i use following code create new children-windows , insert them top of list:

usercontrol1 item1= new usercontrol1(); item1.height = 0; item1.label1.content = "child window"; stackpanel1.children.insert(0, item1); 

slide-down animation in stackpanel - wpf (c#) - stack overflow

learn, share, build

each month, on 50 million developers come stack overflow learn, share knowledge, , build careers.

join world’s largest developer community.

sign up

i trying create animation in stackpanel control when new children-windows added stackpanel, sliding down animation occurs. in vertical list-styled stackpanel.

i use following code create new children-windows , insert them top of list:

usercontrol1 item1= new usercontrol1(); item1.height = 0; item1.label1.content = "child window"; stackpanel1.children.insert(0, item1); 
share|improve question
1  
take at: stackoverflow.com/questions/637844/… – tyrsius jul 6 '12 @ 22:57

your answer

 
discard

posting answer, agree privacy policy , terms of service.

browse other questions tagged or ask own question.


Comments

Popular posts from this blog

javascript - backbone.js Collection.add() doesn't `construct` (`initialize`) an object -

php - Get uncommon values from two or more arrays -

Adding duplicate array rows in Php -