C# winform中ListBox各项之间没有分割线?(VS2013)

请问如何才能使其出现分割线... 请问如何才能使其出现分割线 展开
 我来答
wu_mika
推荐于2016-07-29 · TA获得超过112个赞
知道答主
回答量:97
采纳率:0%
帮助的人:71.8万
展开全部
listBox1.DrawMode = DrawMode.OwnerDrawFixed;
首先将DrawMode为DrawMode.OwnerDrawFixed 或 DrawMode.OwnerDrawVariable 时,才触发该事件(DrawItem事件)
//在构造函数中写上触发的事件:
this.listBox1.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.listBox1_DrawItem);

private void listBox1_DrawItem(object sender, DrawItemEventArgs e)
{
Brush myBrush = Brushes.Black;

if ((e.State & DrawItemState.Selected) == DrawItemState.Selected)
{
myBrush = new SolidBrush(Color.FromArgb(0, 0, 255));//选中时背景颜色
}
else//没有选中时的背景颜色
{
myBrush = new SolidBrush(Color.White);
}
e.Graphics.FillRectangle(myBrush, e.Bounds);//填满矩形背景颜色
e.Graphics.DrawRectangle(new Pen(new SolidBrush(e.ForeColor)), e.Bounds);
e.DrawFocusRectangle();//焦点框

StringFormat stringformat = StringFormat.GenericDefault;
stringformat.LineAlignment = StringAlignment.Center;

e.Graphics.DrawString(listBox1.Items[e.Index].ToString(), e.Font, new SolidBrush(e.ForeColor), e.Bounds, stringformat);
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
cl4651101
2015-11-25 · 超过18用户采纳过TA的回答
知道答主
回答量:74
采纳率:0%
帮助的人:48.7万
展开全部
重绘 ListItem样式
追问
有代码吗?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式