ZengCode.Com (The Thai Php Framework)  


Home   Download   Manual   About us    

Facebook   


MAIN MENU
เขียนโปรแกรมบน iPhone ด้วย MonoTouch
News
Php Tips
Ubuntu
Spring+Strut+Hibernate
Android Programming
Design Pattern By PHP
C# Design Pattern
Linux Quick Tips
C# Tips & Technique
C# using Linq น่าใช้จริงๆ
Java & JavaScript Tips
MAVEN
Database & SQL
ZengCode Framework Guide
Mac OSx
Zeng Code Code
Programming
IPhone (Tips and Trick)

Download เอกสารที่น่าสนใจ

     - Adding Removing Controls On The Runtime and Getting its Values.   (2009-11-10)

 This sample demontrates how to Add Controls on Runtime and how to remove them.
And also how to get values out of an Runtime Created Control.It Also demonstrates how to write event handlers for runtime created controls.

Controls Are Added by The Following Code..

 private void button1_Click(object sender, EventArgs e)
{
            j = j + 1;
            TextBox cntrl;
            LinkLabel labl;
            cntrl = new TextBox();
            cntrl.Text = "Text " + i.ToString();
            labl = new LinkLabel();
            labl.Name = "lbl" + j.ToString();
            labl.Text = "Remove Text Box";

            labl.Tag = cntrl;

            labl.Click += new EventHandler(RemoveControl);
            if (i < this.Height)
            {
                cntrl.Location = new Point(0, i);
                labl.Location = new Point(cntrl.Width + 5 , i);
                i = i + cntrl.Height +5;
                Controls.Add(cntrl);
                Controls.Add(labl);
            }
            else
            {
                MessageBox.Show("Cannot Add more Controls");
            }
}


Controls Are Removed by the Following Code

        public void RemoveControl(object sender, System.EventArgs e)
        {
                LinkLabel lbls=(LinkLabel)sender;
                this.Controls.Remove((LinkLabel)sender);
                this.Controls.Remove((TextBox)lbls.Tag);

        }


Values are retrived using the Following Code

     private void button2_Click(object sender, EventArgs e)
        {
            foreach (Control ctrl in Controls)
            {
                if (ctrl is TextBox)
                {
                    MessageBox.Show(((TextBox)ctrl).Text);
                }
            }
        }


Note that The Tag Property of the LinkLable Control is used to Store the information about the control next to it(TextBox) for Removing purpose only.

---------------------------


Comment
Name
Comment
Security CodeCAPTCHA Image

web hit counter

This page took 0.050545 seconds to load.