求助,,怎样弄c#里的listBox控件背景颜色设为透明。。。在线等待答案。

方法不靠谱的不要发,,,谢谢... 方法不靠谱的不要发,,,谢谢 展开
 我来答
kaizhaocool
2013-04-25 · 超过22用户采纳过TA的回答
知道答主
回答量:112
采纳率:100%
帮助的人:26.8万
展开全部
//自定义控件, 然后在工具箱拖过来用  再把BackColor 设置为Transparent
public partial class TransparentListBox : ListBox
{
public TransparentListBox()
{
this.SetStyle(ControlStyles.UserPaint, true);
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.Green, itemRect);
}
for (int i = 0; i < Items.Count; i++)
{
e.Graphics.DrawString(this.GetItemText(Items[i]), this.Font, new SolidBrush(this.ForeColor), this.GetItemRectangle(i));
}
base.OnPaint(e);
}
}
nicohere
2013-04-25
知道答主
回答量:2
采纳率:0%
帮助的人:2948
展开全部
在ListBox控件右击属性,在属性栏选择BackColor,再选择Web栏里的Transparent
追问
这方法你不确定能行吗?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
朔风荷叶1
2013-04-27 · 超过32用户采纳过TA的回答
知道答主
回答量:253
采纳率:50%
帮助的人:31.4万
展开全部
这问题值这么多分?
追问
能帮我解决问题就好。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式