วันพฤหัสบดีที่ 3 พฤศจิกายน พ.ศ. 2554

c# การสร้าง List ข้อมูลเพื่อเป็น item ให้ combo box

ขั้นตอนที่1
  สร้างคลาสของข้อมูลตามโครงสร้างนี้
     public  class reportType
    {       string name;
            int value;
         
      public reportType(string inName, int inValue)
            {
                name = inName;
                this.value = inValue;
            }
            public string reportName
            {
                get
                {
                    return name;
                }
            }
            public int reportValue
            {
                get
                {
                    return value;
                }
            }
        }
 สร้าง list ข้อมูล
               List<reportType> list = new List<reportType>();
            list.Add(new reportType("A", 11));
            list.Add(new reportType("B", 12));
            list.Add(new reportType("C", 13));

ผูกกับ combo box
      cb_reportType.DisplayMember = "reportName";
       cb_reportType.ValueMember = "reportValue";
       cb_reportType.DataSource = list;

ไม่มีความคิดเห็น:

แสดงความคิดเห็น