gpt4 book ai didi

c# - 银光网格背景图像

转载 作者:行者123 更新时间:2023-11-30 18:57:49 28 4
gpt4 key购买 nike

如何在 C# 中设置网格的背景图像(代码隐藏)。

谢谢Sp我可以做这样的事情吗?

    public ImageSource ImageSourcePin
{
set { this.DreamTypeImagePin.Background = value; }
}

成功了,谢谢你的帮助

        public String ImageSourcePin
{
set {
ImageBrush img = new ImageBrush();
img.ImageSource = (ImageSource)new ImageSourceConverter().ConvertFromString(value);
DreamTypeImagePin.Background = img;
}
}

最佳答案

尝试使用 ImageBrush .把它放在你的 <Grid> 之间和 </Grid>标签。

<Grid.Background>
<ImageBrush ImageSource="Image.jpg"/>
</Grid.Background>

势在必行,你可以这样写:

ImageBrush imgBrush = new ImageBrush();
imgBrush.ImageSource = new BitmapImage(new Uri(@"folder\img.jpg", UriKind.Relative));
grid.Background = imgBrush;

关于c# - 银光网格背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3720349/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com