asp.net|動態|控制項 從BASIC開始接觸開發的佔到了絕大多數,而使用VB起家開始接觸win開發也是佔了絕 大多數,從vb到vb.net變化確實不小,以前用的很多的控制項數組在.net裡卻沒有了,但是費點時間就OK了,這個是我的一個程式裡用到的,今天把這 個類貼上來,這個是很早以前從MSDN上看到的,根據他講的來做的。
//*********************************
//動態增加,刪除數組控制項
//做課題設計的同學可以引用這個類
//範維肖
//*********************************
namespace gradeSystem
{
//**************************
//類textBoxArray實現了動態增加和刪除
//textBox的功能
//**************************
public class textBoxArray:System.Collections.CollectionBase
{
private readonly System.Windows.Forms.Form HostForm;
//建構函式
public textBoxArray(System.Windows.Forms.Form Host)
{
HostForm=Host;
}
//addNewTextBox方法添加一個textbox控制項
public void addNewTextBox()
{
if(this.Count<7)
{
//建一個新的textbox執行個體.
System.Windows.Forms.TextBox aTextBox=new System.Windows.Forms.TextBox();
//將其添加到集合的內部列表
this.List.Add(aTextBox);
//將TextBox添加到由HostForm欄位引用的表單的集合列表中
HostForm.Controls.Add(aTextBox);
//設定初始屬性
aTextBox.Left=(Count-1)*130+70;
aTextBox.Top=160;
aTextBox.Width=120;
aTextBox.BorderStyle=System.Windows.Forms.BorderStyle.FixedSingle;
aTextBox.Font=new System.Drawing.Font("Verdana", 40, System.Drawing.FontStyle.Bold);
aTextBox.Tag=this.Count;
//初始值
aTextBox.Text="9.9";
aTextBox.ForeColor=System.Drawing.Color.Red;
}
}
//建立索引
public System.Windows.Forms.TextBox this [int index]
{
get
{
return (System.Windows.Forms.TextBox)this.List[index];
}
}
//Remove方法用來刪除控制項
public void Remove()
{
if(this.Count>0)
{
HostForm.Controls.Remove (this[this.Count -1]);
this.List.RemoveAt(this.Count-1);
}
}
}
}