動態添加刪除asp.net控制項

來源:互聯網
上載者:User
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);
}
}
}
}



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.