ComBox中item的添加与取值方法

//StringIntObject.cs

using System;

namespace TestUI_PCGL
{
 /// <summary>
 /// StringIntObject 的摘要说明。
 /// </summary>
 public class StringIntObject
 {
  public string s;
  public int i;

  public StringIntObject(string sz, int n)
  {
   s=sz;
   i=n;
  }

  public override string ToString()
  {
   return s;
  }
 }
}
 

//MainForm.cs

using System;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Windows.Forms;
using System.Data;
using System.Data.OleDb;
using System.IO;
using System.Threading;
using System.Collections.Specialized;
using System.Runtime.Remoting.Messaging;
using System.Text.RegularExpressions;
using TestUI_PCGL;
namespace TestUI_PCGL
{

  private void BindComb_cb_shzt()
  {
   StringIntObject[] a=new StringIntObject[5];
   a[0]=new StringIntObject("编辑:0",0);
   a[1]=new StringIntObject("区域经理审核:6",6);
   a[2]=new StringIntObject("大区审核:1",1);
   a[3]=new StringIntObject("业务分部审核:2",2);
   a[4]=new StringIntObject("预测室审核:3",3);
   this.cb_shzt.Items.AddRange(a);
   this.cb_shzt.SelectedIndex=0;
   
  }

  private void cb_shzt_SelectedIndexChanged(object sender, System.EventArgs e)
  {
   MessageBox.Show(((StringIntObject)this.cb_shzt.SelectedItem).i+"");
   
  }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值