Smooth animation in expression blend for window store apps from png images

前端 未结 2 691
失恋的感觉
失恋的感觉 2021-01-26 01:09

I want to make animation in Expression Blend for Windows Store Apps as .gif images are not supported. So I have approx 30 png images. I made a storyboard animation in Blend by c

2条回答
  •  天涯浪人
    2021-01-26 01:32

    So as requested, a quick (VERY quick, like took me about 2 minutes) example of a stick figure animation with XAML instead of dirty .GIF for your consideration.

    Put this in your blah.Resources or ResourceDictionary or wherever it can get accessed from.

    
                
                
                
                
                
                
                
                
                
                
            
    

    Then this in your view;

    
            
                
                    
                
            
            
                
                    
                        
                            
                            
                        
                    
                
                
                    
                
            
            
                
                    
                        
                            
                            
                        
                    
                
                
                    
                
            
            
            
                
                    
                        
                            
                            
                        
                    
                
            
            
                
                    
                        
                            
                            
                        
                    
                
                
                    
                
            
            
        
    

    So just to re-iterate, this is a very quick and dirty example made in Blend in less than 2 minutes, but it will give you an idea, and imagine how cool you could make stuff if you spent more than 2 minutes :)

    Hope this helps, best of luck...

提交回复
热议问题