.net - How can i go to a new designed Form in C#? -


i'm new in c# , in website ;) have form , there next button in it, want go form clicking next button, , want have objects text box or combox in new form.

thanks

add click event handler 'next' button double-clicking in designer. suppose second form called form2. create instance of form2 , use show method:

private void nextbutton_click(object sender, eventargs e) {     form2 frm = new form2();     frm.show(); } 

Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -