2013-10-27 59 views
0

如果我想將某些生活帶入我的Windows應用商店應用的背景中,我需要調查哪種方式?我想到了一些非常簡單的事情,例如根據時間移動太陽或每隔10秒產生一次氣泡,或者爲了演示目的而移動不同高度的飛機。Windows應用商店應用中的現場背景

回答

0

Background房產屬於Brush - 您可以嘗試一下animation就可以了。

其他的解決辦法是設置MediaElement爲您的應用程序的背景:

<Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> 
     <MediaElement Source="sampleVideo.wmv" IsLooping="True" /> 
     <Grid> 

     </Grid> 
</Grid>