C#中使comboBox下拉列表显示图片的问题。

定义privateSystem.Windows.Forms.ComboBoxcomboBox1;privateSystem.Windows.Forms.ImageList... 定义
private System.Windows.Forms.ComboBox comboBox1;
private System.Windows.Forms.ImageList imageList1;
comboBox1下面两个属性一定要设为下面的值。
DrawMode:OwnerDrawFixed;
DropDownStyle:DropDownList;
imageList1中一定要包函与所添加的项相同数目的图
关键方法,此方法为comboBox1的DrawItem事件所引起的方法。
private void comboBox1_DrawItem(object sender, System.Windows.Forms.DrawItemEventArgs e)
{
Graphics g = e.Graphics ;
Rectangle r = e.Bounds ;
Size imageSize = imageList1.ImageSize;
Font fn = null ;
if ( e.Index >= 0 )
{
fn = (Font)fontArray[0];
string s = (string)comboBox1.Items[e.Index];
StringFormat sf = new StringFormat();
sf.Alignment = StringAlignment.Near;
if ( e.State == ( DrawItemState.NoAccelerator | DrawItemState.NoFocusRect))
{
//画条目背景
e.Graphics.FillRectangle(new SolidBrush(Color.Red) , r);
//绘制图像
imageList1.Draw(e.Graphics, r.Left, r.Top,e.Index);
//显示字符串
e.Graphics.DrawString( s , fn , new SolidBrush(Color.Black), r.Left+imageSize.Width ,r.Top);
//显示取得焦点时的虚线框
e.DrawFocusRectangle();
}
else
{
e.Graphics.FillRectangle(new SolidBrush(Color.LightBlue) , r);
imageList1.Draw(e.Graphics, r.Left, r.Top,e.Index);
e.Graphics.DrawString( s , fn , new SolidBrush(Color.Black),r.Left+imageSize.Width ,r.Top);
e.DrawFocusRectangle();
}
}
}
向combobox中添加数据
comboBox1.Items.Add("小车");
comboBox1.Items.Add("视频");
comboBox1.Items.Add("信号灯");

里面有个fn = (Font)fontArray[0];
fontArray应该怎么处理?这里没定义耶。
展开
 我来答
catamaran
2011-11-07 · TA获得超过894个赞
知道小有建树答主
回答量:610
采纳率:0%
帮助的人:177万
展开全部
就是文字的字体,你可以先不用他,直接定义一个font就好了,比如
ont fn = new Font( "宋体", 15, FontStyle.Bold | FontStyle.Italic );
更多追问追答
追问
不知道为什么列表是空白的,没图没文字。
DrawMode:OwnerDrawFixed;设置这项连字都没了。
追答
你看一下那个imagelist有没有设好,需要有真实图片的。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友7ea4d34
2011-11-07 · TA获得超过995个赞
知道小有建树答主
回答量:743
采纳率:0%
帮助的人:693万
展开全部
这是用于定义comboBox1中各行字体的,这段代码上的确没看到你定义。如果现在你只是想调试图片功能,你可以直接把所有fn 改成e.Font
追问
不知道为什么列表是空白的,没图没文字。
DrawMode:OwnerDrawFixed;设置这项连字都没了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式