0
我試圖設置爲我的應用程序的背景圖像,現在我知道如何設置背景圖像本地使用如何在Windows Store應用程序中將應用程序的背景全局設置爲圖像?
<Grid> <Grid.Background> <ImageBrush ImageSource="/Assets/Background.png"/> </Grid.Background> </Grid>
我怎樣才能做到這一點從全球來看,
我試圖設置爲我的應用程序的背景圖像,現在我知道如何設置背景圖像本地使用如何在Windows Store應用程序中將應用程序的背景全局設置爲圖像?
<Grid> <Grid.Background> <ImageBrush ImageSource="/Assets/Background.png"/> </Grid.Background> </Grid>
我怎樣才能做到這一點從全球來看,
有有2種方法來做到這一點: 1.添加樣式到你的資源沒有名字,所以它適用於該類型的每一個元素:
<Page.Resources>
<Style TargetType="Grid">
<Setter Property="Background">
<Setter.Value>
<ImageBrush ImageSource="/Assets/SplashScreen.png"/>
</Setter.Value>
</Setter>
</Style>
</Page.Resources>
2.增添風格的名字,並將其應用如您指定的文件StandardStyles.xaml重點=「LayoutRootStyle」,它很好,謝謝很多工作:當你需要
<Page.Resources>
<Style x:Key="ImageStyle" TargetType="Grid">
<Setter Property="Background">
<Setter.Value>
<ImageBrush ImageSource="/Assets/SplashScreen.png"/>
</Setter.Value>
</Setter>
</Style>
</Page.Resources>
<Grid Style="{StaticResource ImageStyle}">
</Grid>
我改變在x「背景」屬性 – Justice 2013-03-03 12:04:44