WPF - 使用 PNG 的 ImageBrush,不尊重 alpha 通道

发布于 2024-08-06 11:00:29 字数 312 浏览 4 评论 0原文

我想在 Rectangle.Fill 中使用 ImageBrush。该文件是 .PNG。它看起来就像坐在一个灰色的小垫子上。 ImageBrush 从转换器返回,内容如下:

        BitmapImage image = new BitmapImage(new Uri(fileName));
        ImageBrush imageBrush = new ImageBrush();
        imageBrush.ImageSource = image;

I want to use an ImageBrush to use in the Rectangle.Fill. The file is a .PNG. It comes out looking like it is sitting on a little gray pad. The ImageBrush is returned from a converter with something like this:

        BitmapImage image = new BitmapImage(new Uri(fileName));
        ImageBrush imageBrush = new ImageBrush();
        imageBrush.ImageSource = image;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

热血少△年 2024-08-13 11:00:29

我在 UserControl 中使用它,它是 UserControl 或网格(矩形位于不透明的位置)。 image\imagebrush 很好。

I was using this in a UserControl and it is either the UserControl or the Grid (that the rectangle sits in that is not transparent. The image\imagebrush is fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文