ListBox C# 每行的背景色
2个回答
展开全部
<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>
<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>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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);
}
{
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);
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询