ListBox C# 每行的背景色

想给ListBox添加项背景色,变成一行背景白色,一行背景淡蓝色,怎么完成呢,谢谢~~... 想给ListBox添加项背景色,变成一行背景白色,一行背景淡蓝色,怎么完成呢,谢谢~~ 展开
 我来答
wangyuii
2007-08-13 · TA获得超过167个赞
知道小有建树答主
回答量:165
采纳率:0%
帮助的人:221万
展开全部
<asp:ListBox id="ListBox1" runat="server" SelectionMode="Multiple">
<asp:ListItem Value=".89" style="background-color:blue">apples</asp:ListItem>
<asp:ListItem Value=".49" style="background-color:silver">bananas</asp:ListItem>
<asp:ListItem Value="2.99" style="background-color:blue">cherries</asp:ListItem>
<asp:ListItem Value="1.49" style="background-color:silver">grapes</asp:ListItem>
<asp:ListItem Value="2.00" style="background-color:blue">mangos</asp:ListItem>
<asp:ListItem Value="1.09" style="background-color:silver">oranges</asp:ListItem>
</asp:ListBox>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
三根鞋带
推荐于2016-02-01 · TA获得超过2260个赞
知道大有可为答主
回答量:1156
采纳率:0%
帮助的人:0
展开全部
private void listBox1_DrawItem(object sender, System.Windows.Forms.DrawItemEventArgs e)
{
Brush br;

int r;
Math.DivRem(e.Index,2,out r);
if(r == 0)
br = Brushes.Red;
else
br = Brushes.Blue;
e.DrawBackground();
if((e.State & DrawItemState.Selected) == DrawItemState.Selected)
e.DrawFocusRectangle();

Brush b = Brushes.Black;
e.Graphics.FillRectangle(br,e.Bounds);
e.Graphics.DrawString(this.listBox1.Items[e.Index].ToString(),this.listBox1.Font,b,e.Bounds);

}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式