扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:张伟 来源:yesky 2007年11月14日
关键字:
![]() |
![]() |
![]() |
private void Form1_Load(object sender, System.EventArgs e) { //创建"变形"组合框 imageComboBox comboBox = new imageComboBox(); //设置"变形"组合框的图象列表 comboBox.ImageList = this.imageList1; //设置组合框显示风格 comboBox.DropDownStyle = ComboBoxStyle.DropDownList; //添加组合框列表项,在添加时调用OnDrawItem。 comboBox.Items.Add(new imageComboBoxItem("张伟", 0)); comboBox.Items.Add(new imageComboBoxItem("李目海", 1)); comboBox.Items.Add(new imageComboBoxItem("沙长老",0)); comboBox.Items.Add(new imageComboBoxItem("无名")); comboBox.Items.Add(new imageComboBoxItem("周纹句",1)); comboBox.Items.Add(new imageComboBoxItem("李中军",2)); comboBox.Items.Add(new imageComboBoxItem("徐文波",0)); comboBox.Items.Add(new imageComboBoxItem("少明艳",1)); comboBox.Items.Add(new imageComboBoxItem("无名军",2)); //把图象式组合框添加到表单的控件集中 this.Controls.Add(comboBox); } |
static void Main() { //Application.Run(new Form1()); Form1 frm=new Form1(); frm.ShowDialog(); } |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。