WindowsFormsApplication4.Form3.Form3 C# (CSharp) Method

Form3() public method

public Form3 ( Form f, String id, Customer info, Form superParent ) : System
f System.Windows.Forms.Form
id String
info com.eze.api.Customer
superParent System.Windows.Forms.Form
return System
        public Form3(Form f, String id,Customer info,Form superParent)
        {
            InitializeComponent();
                        this.label2.Text = id;
            this.label2.Show();
            customer = info;
            this.superParent = superParent;
            this.Text = "EZETAP";
            this.FormClosed += new FormClosedEventHandler(Form1_FormClosed);
               /* if ((info==null) || ((info!=null) && ((info.getMobileNumber()==null) || (info.getEmailId() == null)))){
                this.button2.Hide();
            }*/
        }