0

我想在 ApplicationBar 中添加一个 ImageBrush。图像来自 Web 服务器。如何使用它?

4

1 回答 1

1

简单的

    <Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<AppBar ><AppBar.Background>
                <ImageBrush ImageSource="./Assets/bg.png"></ImageBrush>
            </AppBar.Background></AppBar>
    </Grid>

至于从 Web 加载图像,请在代码中执行此操作,然后将 imagesource 属性绑定到 viewmodel 中的适当属性

于 2012-12-05T15:58:55.253 回答