-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcombox.ascx.cs
86 lines (79 loc) · 2.23 KB
/
combox.ascx.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class combox : System.Web.UI.UserControl
{
private string _text;
protected void Page_Load(object sender, EventArgs e)
{
if(!IsPostBack)
DropDownList1.Items.Insert(0, "请选择或输入");
}
public void Focus()
{
this.TextBox1.Focus();
}
// Text 重写了TextBox的Text属性
public String Text
{
get
{
_text = this.TextBox1.Text;
return _text;
}
set
{
this.TextBox1.Text = value;
_text = this.TextBox1.Text;
}
}
//为控件增加一个可选择的项
public void AddItem(String item)
{
this.DropDownList1.Items.Add(item);
}
//为控件增加一个可选择的项
public void AddItem(ListItem item)
{
this.DropDownList1.Items.Add(item);
}
//为控件增删除一个可选择的项
public void RemoveItem(ListItem item)
{
this.DropDownList1.Items.Remove(item);
}
//为控件增删除一个可选择的项
public void RemoveItem(String item)
{
this.DropDownList1.Items.Remove(item);
}
//清除控件数据
public void Clear()
{
this.DropDownList1.Items.Clear();
this.TextBox1.Text = "";
}
//返回选项数量
public int Count
{
get
{
return this.DropDownList1.Items.Count;
}
}
protected void TextBox1_TextChanged(object sender, EventArgs e)
{
}
//选择某项
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
this.TextBox1.Text = this.DropDownList1.SelectedItem.Text;
}
}