首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Windows Mobile >

怎么在后台修改gird的背景

2013-03-04 
如何在后台修改gird的背景假设前台有这么一个grid如何在后台修改他的背景Grid x:NameLayoutRootPivot

如何在后台修改gird的背景
假设前台有这么一个grid
如何在后台修改他的背景
<Grid x:Name="LayoutRootPivot">
        <Grid.Background>
            <ImageBrush Stretch="Fill" ImageSource="/Images/Background.jpg"/>
        </Grid.Background>
[解决办法]


private void button1_Click(object sender, RoutedEventArgs e)
        {
            gridName.Background = new SolidColorBrush(Colors.Blue);
        }

[解决办法]

grid.Background = new ImageBrush { ImageSource = new BitmapImage(new Uri("/Images/test.jpg", UriKind.Relative)) };

BitmapImage需要引用命名空间

热点排行