gpt4 book ai didi

c# - 从后面的代码附加 Image/ImageBrush

转载 作者:太空狗 更新时间:2023-10-29 23:13:43 26 4
gpt4 key购买 nike

我正在尝试添加一个图像作为 UserControl 的背景。根据变量的值,我需要更改该背景,但无论我使用什么路径或 Uri 格式,背景都不会改变。

我在 stackoverflow 中看到了很多问题,但没有一个能解决我的单一问题。我让下面的代码:

            if (callback.liveUvis.ContainsUVI(uvi))
{
this.Status.Text = "LIVE";


ImageBrush imgB = new ImageBrush();
BitmapImage btpImg = new BitmapImage();
btpImg.UriSource = new Uri(@"///IMG///Live///bck_frame_info_video_live.png", UriKind.Relative);
//imgB.ImageSource = new BitmapImage(new Uri("~/IMG/Live/bck_frame_info_video_live.png", UriKind.RelativeOrAbsolute));
//imgB.ImageSource = new BitmapImage(new Uri("ms-appx:///IMG/Live/bck_frame_info_video_live.png"));
imgB.ImageSource = btpImg;
this.Background = imgB;
}

我在尝试附加图像时遇到了同样的问题......我想这也取决于 Uri 格式,但我也让代码以防万一:)

    private void setIcon_Desc(string dd)
{
try
{
Image img = new Image();
img.Source = new BitmapImage(new Uri(this.BaseUri, "IMG/pictos_small/white/160dpi/" + dd + ".png"));
img.Stretch = Stretch.None;
this.Icon = img;
this.Sport.Text = callback.disc.getDescription(dd).ToUpper();
}
catch(Exception ex)
{
callback.exception.writeExceptions(ex);
}

}

提前致谢!

最佳答案

我可以在更改用户控件的背景时重现您的问题。

我目前使用的解决方法是更改​​控件中根 UIElement 的背景。

<Grid x:Name="container">
<Grid.Background>
<ImageBrush Stretch="Fill" ImageSource="Images/bg-blue.png"/>
</Grid.Background>
<StackPanel>
<TextBlock>Hello World</TextBlock>
<Button Click="Button_Click">Change Background</Button>
<Image x:Name="display"></Image>
</StackPanel>
</Grid>

public sealed partial class MyUserControl : UserControl
{
public MyUserControl()
{
this.InitializeComponent();
}

private void Button_Click(object sender, RoutedEventArgs e)
{
ImageBrush imgB = new ImageBrush();

BitmapImage btpImg = new BitmapImage();

btpImg.UriSource = new Uri(@"ms-appx:///images/bg-light-blue.png");

imgB.ImageSource = btpImg;

container.Background = imgB;
}
}

关于c# - 从后面的代码附加 Image/ImageBrush,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33142928/

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