c# 怎么把listbox的背景设为透明

详细一点,我是新人... 详细一点,我是新人 展开
 我来答
AA5956
推荐于2016-11-11 · TA获得超过1869个赞
知道小有建树答主
回答量:705
采纳率:72%
帮助的人:471万
展开全部
参考这个链接:http://blog.csdn.net/bdstjk/article/details/7007662
public class TransParentListBox : ListBox  
{  
    public TransParentListBox()  
    {  
        //如果为 true,控件将自行绘制,而不是通过操作系统来绘制。  
        //如果为 false,将不会引发 Paint 事件。此样式仅适用于派生自 Control 的类。  
        this.SetStyle(ControlStyles.UserPaint, true);  
  
  
        //如果为 true,控件接受 alpha 组件小于 255 的 BackColor 以模拟透明。  
        //仅在 UserPaint 位设置为 true 并且父控件派生自 Control 时才模拟透明。  
        this.SetStyle(ControlStyles.SupportsTransparentBackColor, true);  
    }  
  
    protected override void OnSelectedIndexChanged(EventArgs e)  
    {  
        this.Invalidate();  
        base.OnSelectedIndexChanged(e);  
    }  
  
    protected override void OnPaint(PaintEventArgs e)  
    {  
        if (this.Focused && this.SelectedItem != null)  
        {  
            //设置选中行背景颜色  
            Rectangle itemRect = this.GetItemRectangle(this.SelectedIndex);  
            //e.Graphics.FillRectangle(Brushes.Red, itemRect);  
            e.Graphics.FillRectangle(Brushes.LightBlue, itemRect);  
        }  
        for (int i = 0; i < Items.Count; i++)  
        {  
            //设置绘制文字的格式  
            StringFormat strFmt = new System.Drawing.StringFormat();  
            strFmt.Alignment = StringAlignment.Center; //文本垂直居中  
            strFmt.LineAlignment = StringAlignment.Center; //文本水平居中  
            e.Graphics.DrawString(this.GetItemText(this.Items[i]), this.Font, new SolidBrush(this.ForeColor), this.GetItemRectangle(i), strFmt);  
  
            //e.Graphics.DrawString(this.GetItemText(this.Items[i]), this.Font, new SolidBrush(this.ForeColor), this.GetItemRectangle(i));  
        }  
  
  
  
        base.OnPaint(e);  
    }  
  
}
追问
这个代码具体是什么用呢? xinren
追答
你先读读代码。代码不多。什么函数不懂,就去查什么函数,一行一行的看,半个小时就搞定了。而且后面还有注释。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式