public Designation(DesigView view, int code) { viewForm = view; Code = code; InitializeComponent(); //BindDropDown(); this.Text = this.Text + " (Edit)"; }
public static DesigView Instance() { if (sForm == null) { sForm = new DesigView(); } return(sForm); }
public Designation(DesigView view) { viewForm = view; Code = 0; InitializeComponent(); // BindDropDown(); this.Text = this.Text + " (Add)"; }