DropDownList(ListBox)控件既强大又好用。为了让它更强大、更好用,我们来写一个继承自DropDownList(ListBox)的控件。
[源码下载]


扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)


作者:webabcd


介绍
扩展DropDownList控件和ListBox控件
通过DropDownList控件和ListBox控件的.Items.Add(ListItem item)方法,来为其添加optgroup标签,从而实现分组功能


使用方法
1、设置属性:
OptionGroupValue - 用于添加DropDownList(ListBox)控件的分组项的ListItem的Value值(默认为optgroup
2、使用DropDownList(ListBox)控件的.Items.Add(ListItem item)方法:
OptionGroupValue为默认值时:SmartDropDownList.Items.Add(new ListItem("中国", "optgroup"));


图示
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)


关键代码(以DropDownList为例)
SmartDropDownList.cs
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)using System;
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
using System.Collections.Generic;
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
using System.Text;
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
using System.Web.UI.WebControls;
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
using System.Web.UI;
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)[assembly: System.Web.UI.WebResource(
"YYControls.SmartDropDownList.Resources.Icon.bmp""image/bmp")]
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
namespace YYControls
}

Property.cs
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)using System;
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
using System.Collections.Generic;
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
using System.Text;
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
using System.ComponentModel;
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
using System.Web.UI;
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
namespace YYControls
}

OptionGroup.cs
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)using System;
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
using System.Collections.Generic;
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
using System.Text;
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
using System.Data;
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
using System.Web.UI.WebControls;
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
using System.Web.UI;
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
using System.Web;
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
扩展DropDownList控件和ListBox控件(1) - 支持分组功能(optgroup标签)
namespace YYControls
}


OK
[源码下载]

相关文章: