如何使ListBox的背景透明?

问题描述 投票:0回答:1

我有一个c# WinForms应用程序,背景是一张图片。我在窗口中放了一个ListBox,我想把ListBox的背景变成透明的。BackColor 为我的ListBox透明化。但ListBox不支持透明的 BackColor. 我可以为它做什么?

c# winforms listbox backcolor
1个回答
3
投票

你能做的应该是这样的。

比如说,我们要创建一个透明的列表框,名字叫作: TansparentListBox. 所以我们需要从下面的 ListBox 控件,设置一些控件样式,使其具有双缓冲,防止绘制背景,并表示我们将自己进行绘制。

using System;
using System.Drawing;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using System.ComponentModel;

[ToolboxBitmap(typeof(ListBox)),
    DesignerCategory("")]
public class TransparentListBox : ListBox
{

    public TransparentListBox() : base()
    {
        SetStyle(
            ControlStyles.Opaque |
            ControlStyles.AllPaintingInWmPaint |
            ControlStyles.ResizeRedraw |
            ControlStyles.UserPaint |
            ControlStyles.OptimizedDoubleBuffer, true);
        DrawMode = DrawMode.OwnerDrawFixed;
    }
    //...

现在我们需要覆盖 OnPaintOnDrawItem 事件来进行绘制。该 DrawThemeParentBackground 函数是需要复制父体的背景,只是我们控件的区域。此外,我们还有一个新成员,即 SelectionBackColor 属性,即所选项目的背景色。

    //...
    public Color SelectionBackColor { get; set; } = Color.DarkOrange;

    [DllImport("uxtheme", ExactSpelling = true)]
    private extern static int DrawThemeParentBackground(
        IntPtr hWnd, 
        IntPtr hdc, 
        ref Rectangle pRect
        );

    protected override void OnPaint(PaintEventArgs e)
    {
        var g = e.Graphics;
        var rec = ClientRectangle;

        IntPtr hdc = g.GetHdc();
        DrawThemeParentBackground(this.Handle, hdc, ref rec);
        g.ReleaseHdc(hdc);

        using (Region reg = new Region(e.ClipRectangle))
        {
            if (Items.Count > 0)
            {
                for (int i = 0; i < Items.Count; i++)
                {
                    rec = GetItemRectangle(i);

                    if (e.ClipRectangle.IntersectsWith(rec))
                    {
                        if ((SelectionMode == SelectionMode.One && SelectedIndex == i) ||
                            (SelectionMode == SelectionMode.MultiSimple && SelectedIndices.Contains(i)) ||
                            (SelectionMode == SelectionMode.MultiExtended && SelectedIndices.Contains(i)))
                            OnDrawItem(new DrawItemEventArgs(g, Font, rec, i, DrawItemState.Selected, ForeColor, BackColor));
                        else
                            OnDrawItem(new DrawItemEventArgs(g, Font, rec, i, DrawItemState.Default, ForeColor, BackColor));

                        reg.Complement(rec);
                    }
                }
            }
        }            
    }

    protected override void OnDrawItem(DrawItemEventArgs e)
    {
        if (e.Index < 0) return;

        var rec = e.Bounds;
        var g = e.Graphics;

        g.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias;

        if ((e.State & DrawItemState.Selected) == DrawItemState.Selected)
            using (SolidBrush sb = new SolidBrush(SelectionBackColor))
                g.FillRectangle(sb, rec);

        using (SolidBrush sb = new SolidBrush(ForeColor))
        using (StringFormat sf = new StringFormat { Alignment = StringAlignment.Near, LineAlignment = StringAlignment.Center })
            g.DrawString(GetItemText(Items[e.Index]), Font, sb, rec, sf);
    }
    //...

困难的部分已经完成了。最后,当某些事件发生时,绘图应该被刷新,否则它将是一个视觉上的混乱。

    //...
    protected override void OnSelectedIndexChanged(EventArgs e)
    {
        base.OnSelectedIndexChanged(e);
        Invalidate();
    }

    protected override void OnMouseDown(MouseEventArgs e)
    {
        base.OnMouseDown(e);
        Invalidate();
    }

    protected override void OnMouseWheel(MouseEventArgs e)
    {
        base.OnMouseWheel(e);
        Invalidate();
    }
    //...

同时,当使用垂直和水平滚动条时,也需要刷新。这可以通过覆盖 WndProc 因为ListBox控件没有任何滚动事件。

    //...
    private const int WM_KILLFOCUS  = 0x8;
    private const int WM_VSCROLL    = 0x115;
    private const int WM_HSCROLL    = 0x114;

    protected override void WndProc(ref Message m)
    {
        if (m.Msg != WM_KILLFOCUS && 
            (m.Msg == WM_HSCROLL || m.Msg == WM_VSCROLL))
            Invalidate();
        base.WndProc(ref m);
    }
}

就是这样。拼图了,重建并尝试。

TransparentListBox

© www.soinside.com 2019 - 2024. All rights reserved.