gpt4 book ai didi

c# - ListView 中的图像与 BackColor 属性不匹配

转载 作者:行者123 更新时间:2023-11-30 17:29:44 25 4
gpt4 key购买 nike

概览

我目前正在为我的应用开发一个主题系统,允许用户选择浅色和深色主题(类似于 visual studio)。整个过程非常简单,这就是我目前更改 ListView 控件的 BackColor 属性的方式(尽管我尝试了一些失败的内联解决方案,例如设置 ListViewListViewItemBackColor

分解

我有一个包含 6 张图片的 ImageList;所有这些都有透明的背景。每个图像都是一个不同颜色的玻璃球和一个投影。我根据从数据库中提取的状态,将这六张图片中的一张分配给 ListView(设置为 Details View )控件中的每个 ListViewItem .

只要 ListView 和分配图像的 ListViewItem 保持其 BackColor 属性设置为 Color,一切都很好.控制。如果它变为任何其他颜色(绿色、灰色、蓝色、红色等);然后图像的背景颜色不匹配。它继续保留默认的 Color.Control 颜色。

主题代码

public static void ApplyTheme(Form f) {
foreach (Control c in f.Controls) {
if (c is MenuStrip)
ThemeMenu((MenuStrip)c);
else {
ApplyStyles(c);
if (c.Controls != null || c.Controls.Count > 0)
RecurseChildControls(c);
}
}
}
public static void RecurseChildControls(Control parent) {
foreach (Control child in parent.Controls) {
ApplyStyles(child)

if (child.Controls != null || child.Controls.Count > 0)
RecurseChildControls(child);
}
}
public static void ApplyStyles(Control c) {
if (c is Button) {
Button b = (Button)c;
b.FlatStyle = FlatStyle.Flat;
b.FlatAppearance.BorderSize = 0;
}
if (c is RoundedPanel || c is PictureBox) {
// Do nothing.
} else {
if (c is Label) {
if (c.Parent is RoundedPanel) {
// Do nothing.
} else {
c.BackColor = BackColor;
c.ForeColor = ForeColor;
}
} else {
c.BackColor = BackColor;
c.ForeColor = ForeColor;
}

if (c is ListView) {
ListView lv = (ListView)c;
if (Style = Themes.Dark)
lv.GridLines = false;

foreach (ListViewItem lvi in lv.Items) {
lvi.BackColor = BackColor;
lvi.ForeColor = ForeColor;
}
}
}
}

我尝试添加一个方法来更新 ListView 控件的 BackColor 属性及其所有 ListViewItem 对象,然后我在 DrawItemDrawSubItem 事件上调用此方法(均无效);调用此方法代替 ListViewInvalidate 方法,在更改 ListViewItem< 的 ImageIndex 属性后立即调用此方法;我什至尝试过对表单本身调用 Invalidate 并重新绘制所有内容。

我真的可以在这方面使用一些指导,因为到目前为止其他一切都很好;这是唯一让我原地打转的问题。我已经通过谷歌浏览了好几次,但从未找到任何与图像相关的结果,该图像不具有与其包含的 ListViewListViewItem 相同的 BackColor。也许我没有使用正确的术语进行搜索,或者也许我是第一个提示这个问题的人;谁知道。感谢您的帮助。

注意

如果您觉得我遗漏了任何需要的信息,或者如果我在某些事情上应该更清楚,请随时发表评论并告诉我,以便我可以为 future 的读者更新帖子的清晰度。

新尝试(失败)

  • 尝试在设置 ImageIndex 属性之前(和之后)更改 ListView 对象的背景颜色。
  • 尝试使用 OwnerDrawDrawItem 事件来绘制图像。
  • 尝试创建具有指定背景颜色的原始图像的位图,如下所示

尝试代码

// Bullet 2
e.Graphics.DrawImage(Image, Rectangle);

// Bullet 3
Rectangle r = new Rectangle(0, e.Bounds.Y, 16, 16);
Image I = imageList1.Images[e.Item.ImageIndex];
Bitmap b = new Bitmap(i.Width, i.Height);
using (Graphics g = Graphics.FromImage(b)) {
g.Clear(Theme.BackColor);
g.DrawImageUnscaledAndClipped(i, new Rectangle(Point.Empty, i.Size));
}
e.Graphics.DrawImage(b, r);

图片

Desired Result

Current Result其中绿点是图片,红点是背景问题,蓝框是 ListViewItem

最佳答案

要在图像下显示单个 ListViewItem.BackColors,您需要owner-draw 否则将显示 ListView.BackColor。但是您注意到图像的半透明部分有丑陋的瑕疵。

经过多次测试,我相信 ImageList 是罪魁祸首。

它似乎在应该是半透明像素的地方插入了灰色像素。完全透明的像素不受影响。

这与其属性无关。

以下是所有者使用 ImageList 中的图像绘制一次 ListView 以及一次绘制相同图像但直接从磁盘加载的结果..:

enter image description here enter image description here

你肯定能看出哪个是哪个..

图像是透明背景上的黄色 Blob ,带有半透明光晕和两个半透明孔。

ListView.DrawItem事件中的绘制代码是一样的:

e.DrawBackground();
e.DrawText();
Rectangle rect = new Rectangle(0, e.Bounds.Y, 32, 16);

Bitmap bmp1 = (Bitmap)imageList1.Images[e.Item.ImageIndex];
Bitmap bmp2 = (Bitmap)Bitmap.FromFile("filepath.png");

e.Graphics.DrawImage(bmp1_OR_bmp2, rect);

因此,如果您需要图像的半透明效果,您不能真正将它们存储在 ImageList 中。

关于c# - ListView 中的图像与 BackColor 属性不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50684959/

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