功能如图:
备注:粗体的先项不能被选中ComboBox下拉列表在下拉列表中分类

解决方案 »

  1.   

    create table tb(id int,[name] varchar(100),pid int)
    go
    insert into tb
    select 1,'a',0 union all
    select 2,'b',0 union all
    select 3,'c',0 union all
    select 4,'a1',1 union all
    select 5,'a11',4 union all
    select 6,'b1',2 union all
    select 7,'b2',2 union all
    select 8,'b21',7 union all
    select 9,'c1',3 union all
    select 10,'c2',3 
    go
    ;with cte as(
    select *,lv=id from tb where pid=0
    union all
    select b.*,lv=c.lv from tb b join cte c on c.id=b.pid
    )
    select * from cte order by lv,pid,id
    绑定到comboBox,用户选中的时候判断选中项的pid是不是为0,如果是0则提示不能选中
      

  2.   


    为什么会有这么一行?不好意思,有点不明白这行的目的?select b.*,lv=c.lv from tb b join cte c on c.id=b.pid
      

  3.   

    以及Pid字段的意义,难道只有判断pid为不为零,这一个作用?
      

  4.   

    pid,parentid的简写,判断他是不是顶级节点
      

  5.   

    这是用什么做的,是用treeView做的吗?
    有点不太懂?能给个完整版的例子研究一下吗
      

  6.   

    如果pid为0就应用样式不就行了- -
      

  7.   

    internal System.Windows.Forms.ComboBox ComboBox1;
    private string[] animals; // This method initializes the owner-drawn combo box.
    // The drop-down width is set much wider than the size of the combo box
    // to accomodate the large items in the list.  The drop-down style is set to 
    // ComboBox.DropDown, which requires the user to click on the arrow to 
    // see the list.
    private void InitializeComboBox()
    {
    this.ComboBox1 = new ComboBox();
    this.ComboBox1.DrawMode = 
    System.Windows.Forms.DrawMode.OwnerDrawVariable;
    this.ComboBox1.Location = new System.Drawing.Point(10, 20);
    this.ComboBox1.Name = "ComboBox1";
    this.ComboBox1.Size = new System.Drawing.Size(100, 120);
    this.ComboBox1.DropDownWidth = 250;
    this.ComboBox1.TabIndex = 0;
    this.ComboBox1.DropDownStyle = ComboBoxStyle.DropDown;
    animals = new string[]{"Elephant", "c r o c o d i l e", "lion"};
    ComboBox1.DataSource = animals;
    this.Controls.Add(this.ComboBox1); // Hook up the MeasureItem and DrawItem events
    this.ComboBox1.DrawItem += 
    new DrawItemEventHandler(ComboBox1_DrawItem);
    this.ComboBox1.MeasureItem += 
    new MeasureItemEventHandler(ComboBox1_MeasureItem);
    } // If you set the Draw property to DrawMode.OwnerDrawVariable, 
    // you must handle the MeasureItem event. This event handler 
    // will set the height and width of each item before it is drawn. 
    private void ComboBox1_MeasureItem(object sender, 
    System.Windows.Forms.MeasureItemEventArgs e)
    { switch(e.Index)
    {
    case 0:
    e.ItemHeight = 45;
    break;
    case 1:
    e.ItemHeight = 20;
    break;
    case 2:
    e.ItemHeight = 35;
    break;
    }
    e.ItemWidth = 260; } // You must handle the DrawItem event for owner-drawn combo boxes.  
    // This event handler changes the color, size and font of an 
    // item based on its position in the array.
    private void ComboBox1_DrawItem(object sender, 
    System.Windows.Forms.DrawItemEventArgs e)
    { float size = 0;
    System.Drawing.Font myFont;
    FontFamily family = null; System.Drawing.Color animalColor = new System.Drawing.Color();
    switch(e.Index)
    {
    case 0:
    size = 30;
    animalColor = System.Drawing.Color.Gray;
    family = FontFamily.GenericSansSerif;
    break;
    case 1:
    size = 10;
    animalColor = System.Drawing.Color.LawnGreen;
    family = FontFamily.GenericMonospace;
    break;
    case 2:
    size = 15;
    animalColor = System.Drawing.Color.Tan;
    family = FontFamily.GenericSansSerif;
    break;
    } // Draw the background of the item.
    e.DrawBackground(); // Create a square filled with the animals color. Vary the size
    // of the rectangle based on the length of the animals name.
    Rectangle rectangle = new Rectangle(2, e.Bounds.Top+2, 
    e.Bounds.Height, e.Bounds.Height-4);
    e.Graphics.FillRectangle(new SolidBrush(animalColor), rectangle); // Draw each string in the array, using a different size, color,
    // and font for each item.
    myFont = new Font(family, size, FontStyle.Bold);
    e.Graphics.DrawString(animals[e.Index], myFont, System.Drawing.Brushes.Black, new RectangleF(e.Bounds.X+rectangle.Width, e.Bounds.Y, e.Bounds.Width, e.Bounds.Height)); // Draw the focus rectangle if the mouse hovers over an item.
    e.DrawFocusRectangle();
    }
      

  8.   

    http://www.51aspx.com/code/PictureComboBox
      

  9.   

    private void comboBox1_DrawItem(object sender, DrawItemEventArgs e)
            {
                Rectangle rect = new Rectangle(0, e.Bounds.Y, comboBox1.Width, 20);
                Font font = e.Font;
                if (e.Index % 3 == 0)
                    font = new System.Drawing.Font(font, FontStyle.Bold);
                e.Graphics.DrawString(comboBox1.Items[e.Index].ToString(), font, Brushes.Black, rect);
            }
      

  10.   

    我觉得 按分级不同设置 FONT属性 ,设置不同的缩进不就完了